diff options
author | 2015-10-09 14:30:50 +0100 | |
---|---|---|
committer | 2015-10-09 14:30:50 +0100 | |
commit | 8c3375affa313bb841d993d705a370f0999c57a4 (patch) | |
tree | 8acf6b6cf471dc3b9d644155340d2ba35cb46643 /scripts/src/devices.lua | |
parent | fb989bb821f049bc41d537a0421e73b8798d48ac (diff) | |
parent | feef4e980ecc5d2d08cd9c40d1e6f081896fc786 (diff) |
Merge branch 'master' of https://github.com/mamedev/mame
Diffstat (limited to 'scripts/src/devices.lua')
-rw-r--r-- | scripts/src/devices.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/src/devices.lua b/scripts/src/devices.lua index 6ec60b29826..c46d0db8427 100644 --- a/scripts/src/devices.lua +++ b/scripts/src/devices.lua @@ -47,7 +47,7 @@ function devicesProject(_target, _subtarget) dofile(path.join("src", "machine.lua")) -if (_OPTIONS["DRIVERS"] == nil) then +if (_OPTIONS["SOURCES"] == nil) then project ("bus") uuid ("5d782c89-cf7e-4cfe-8f9f-0d4bfc16c91d") kind (LIBTYPE) @@ -85,6 +85,7 @@ else dofile(path.join("src", "bus.lua")) end +if #disasm_files > 0 then project ("dasm") uuid ("f2d28b0a-6da5-4f78-b629-d834aa00429d") kind (LIBTYPE) @@ -129,3 +130,5 @@ end } end end + +end |