summaryrefslogtreecommitdiffstats
path: root/docs/release/scripts/genie.lua
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2016-05-26 00:26:07 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2016-05-26 00:26:07 +1000
commit7e3fce4ba9ebd4e4dc6b53027e70653c656c643b (patch)
tree2add66db88bac7b2186e6fc89f843727f1b9907a /docs/release/scripts/genie.lua
parent4772a2556d0f35de45d601bd604595279f250236 (diff)
0.174 Release Fileshbmame174
Diffstat (limited to 'docs/release/scripts/genie.lua')
-rw-r--r--docs/release/scripts/genie.lua13
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/release/scripts/genie.lua b/docs/release/scripts/genie.lua
index 3281ca7813b..cfb30ed95d8 100644
--- a/docs/release/scripts/genie.lua
+++ b/docs/release/scripts/genie.lua
@@ -1,5 +1,6 @@
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
+STANDALONE = false
newoption {
trigger = 'build-dir',
@@ -553,7 +554,7 @@ configuration { "Debug" }
defines {
"MAME_DEBUG",
"MAME_PROFILER",
- "BGFX_CONFIG_DEBUG=1",
+-- "BGFX_CONFIG_DEBUG=1",
}
if _OPTIONS["FASTDEBUG"]=="1" then
@@ -1317,14 +1318,18 @@ group "core"
dofile(path.join("src", "emu.lua"))
-dofile(path.join("src", "mame", "frontend.lua"))
+if (STANDALONE~=true) then
+ dofile(path.join("src", "mame", "frontend.lua"))
+end
group "devices"
dofile(path.join("src", "devices.lua"))
devicesProject(_OPTIONS["target"],_OPTIONS["subtarget"])
-group "drivers"
-findfunction("createProjects_" .. _OPTIONS["target"] .. "_" .. _OPTIONS["subtarget"])(_OPTIONS["target"], _OPTIONS["subtarget"])
+if (STANDALONE~=true) then
+ group "drivers"
+ findfunction("createProjects_" .. _OPTIONS["target"] .. "_" .. _OPTIONS["subtarget"])(_OPTIONS["target"], _OPTIONS["subtarget"])
+end
group "emulator"
dofile(path.join("src", "main.lua"))