mirror of
https://github.com/holub/mame
synced 2025-04-16 21:44:32 +03:00
40 lines
723 B
Lua
40 lines
723 B
Lua
CPUS["Z80"] = true
|
|
|
|
SOUNDS["SN76496"] = true
|
|
|
|
VIDEOS["TMS9928A"] = true
|
|
|
|
BUSES["COLECO"] = true
|
|
|
|
function createProjects_mess_tiny(_target, _subtarget)
|
|
project ("mess_tiny")
|
|
targetsubdir(_target .."_" .. _subtarget)
|
|
kind "StaticLib"
|
|
uuid (os.uuid("drv-mess-tiny"))
|
|
|
|
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_mess_tiny(_target, _subtarget)
|
|
links {
|
|
"mess_tiny",
|
|
}
|
|
end |