mirror of
https://github.com/holub/mame
synced 2025-06-30 16:00:01 +03:00
Added info header at the top of each .lua file (nw)
This commit is contained in:
parent
4884956b4e
commit
31cca9ea63
@ -1,6 +1,14 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- 3rdparty.lua
|
||||
--
|
||||
-- Library objects for all 3rdparty sources
|
||||
--
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
--------------------------------------------------
|
||||
-- expat library objects
|
||||
--------------------------------------------------
|
||||
|
@ -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 = { }
|
||||
|
@ -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")
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -1,6 +1,14 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- sdl.lua
|
||||
--
|
||||
-- Rules for the building with SDL
|
||||
--
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
dofile("modules.lua")
|
||||
|
||||
|
||||
|
@ -1,6 +1,14 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- windows.lua
|
||||
--
|
||||
-- Rules for the building for Windows
|
||||
--
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
dofile("modules.lua")
|
||||
|
||||
|
||||
|
@ -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")
|
||||
|
@ -1,6 +1,14 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- tools.lua
|
||||
--
|
||||
-- Rules for the building of tools
|
||||
--
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
--------------------------------------------------
|
||||
-- romcmp
|
||||
--------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user