mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
added ume subtarget dummy so can test compile of all devices (nw)
This commit is contained in:
parent
efb47469d3
commit
1a5d5bbbd1
2 changed files with 53 additions and 0 deletions
43
scripts/target/ume/dummy.lua
Normal file
43
scripts/target/ume/dummy.lua
Normal file
|
@ -0,0 +1,43 @@
|
|||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- ume.lua
|
||||
--
|
||||
-- Universal target makefile
|
||||
--
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
dofile("../mess/mess.lua")
|
||||
dofile("../mame/mame.lua")
|
||||
|
||||
function createProjects_ume_dummy(_target, _subtarget)
|
||||
project ("ume_dummy")
|
||||
targetsubdir(_target .."_" .. _subtarget)
|
||||
kind "StaticLib"
|
||||
uuid (os.uuid("drv-ume_dummy"))
|
||||
|
||||
options {
|
||||
"ForceCPP",
|
||||
}
|
||||
|
||||
includedirs {
|
||||
MAME_DIR .. "src/osd",
|
||||
MAME_DIR .. "src/emu",
|
||||
MAME_DIR .. "src/mess",
|
||||
MAME_DIR .. "src/lib",
|
||||
MAME_DIR .. "src/lib/util",
|
||||
MAME_DIR .. "3rdparty",
|
||||
MAME_DIR .. "3rdparty/zlib",
|
||||
GEN_DIR .. "mess/layout",
|
||||
}
|
||||
|
||||
files{
|
||||
MAME_DIR .. "src/mess/drivers/coleco.c",
|
||||
MAME_DIR .. "src/mess/machine/coleco.c",
|
||||
}
|
||||
end
|
||||
|
||||
function linkProjects_ume_dummy(_target, _subtarget)
|
||||
links {
|
||||
"ume_dummy",
|
||||
}
|
||||
end
|
10
src/ume/dummy.lst
Normal file
10
src/ume/dummy.lst
Normal file
|
@ -0,0 +1,10 @@
|
|||
/******************************************************************************
|
||||
|
||||
dummy.lst
|
||||
|
||||
List of all enabled drivers in the system. This file is parsed by
|
||||
makelist.exe, sorted, and output as C code describing the drivers.
|
||||
|
||||
******************************************************************************/
|
||||
|
||||
coleco
|
Loading…
Reference in a new issue