Added info header at the top of each .lua file (nw)

This commit is contained in:
Scott Stone 2015-11-14 12:51:21 -05:00
parent 4884956b4e
commit 31cca9ea63
12 changed files with 95 additions and 3 deletions

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- 3rdparty.lua
--
-- Library objects for all 3rdparty sources
--
---------------------------------------------------------------------------
--------------------------------------------------
-- expat library objects
--------------------------------------------------

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- devices.lua
--
-- Rules for building device cores
--
---------------------------------------------------------------------------
function devicesProject(_target, _subtarget)
disasm_files = { }

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- emu.lua
--
-- Rules for building emu cores
--
---------------------------------------------------------------------------
project ("emu")
targetsubdir(_OPTIONS["target"] .."_" .. _OPTIONS["subtarget"])
uuid ("e6fa15e4-a354-4526-acef-13c8e80fcacf")

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- lib.lua
--
-- Rules for building lib cores
--
---------------------------------------------------------------------------
project "utils"
uuid "22489ad0-4cb2-4d91-ad81-24b0d80ca30a"
kind (LIBTYPE)

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- main.lua
--
-- Rules for building main binary
--
---------------------------------------------------------------------------
function mainProject(_target, _subtarget)
if (_OPTIONS["SOURCES"] == nil) then
if (_target == _subtarget) then

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- netlist.lua
--
-- Rules for building netlist cores
--
---------------------------------------------------------------------------
project "netlist"
uuid "665ef8ac-2a4c-4c3e-a05f-fd1e5db11de9"
kind (LIBTYPE)

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- modules.lua
--
-- Rules for the building of modules
--
---------------------------------------------------------------------------
function string.starts(String,Start)
return string.sub(String,1,string.len(Start))==Start
end

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- osdmini.lua
--
-- Rules for the building of osdmini
--
---------------------------------------------------------------------------
function maintargetosdoptions(_target,_subtarget)
end

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- sdl.lua
--
-- Rules for the building with SDL
--
---------------------------------------------------------------------------
dofile("modules.lua")

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- windows.lua
--
-- Rules for the building for Windows
--
---------------------------------------------------------------------------
dofile("modules.lua")

View File

@ -1,9 +1,13 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
--------------------------------------------------
-- MAME tests
--------------------------------------------------
---------------------------------------------------------------------------
--
-- tests.lua
--
-- Rules for building tests
--
---------------------------------------------------------------------------
project("tests")
uuid ("66d4c639-196b-4065-a411-7ee9266564f5")

View File

@ -1,6 +1,14 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
---------------------------------------------------------------------------
--
-- tools.lua
--
-- Rules for the building of tools
--
---------------------------------------------------------------------------
--------------------------------------------------
-- romcmp
--------------------------------------------------