mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
Do not create dasm.lib if no disassembler compiled (nw)
This commit is contained in:
parent
1dcb8313d6
commit
64599d2aff
@ -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
|
||||
|
@ -101,7 +101,13 @@ end
|
||||
"optional",
|
||||
"emu",
|
||||
"formats",
|
||||
}
|
||||
if #disasm_files > 0 then
|
||||
links {
|
||||
"dasm",
|
||||
}
|
||||
end
|
||||
links {
|
||||
"utils",
|
||||
"expat",
|
||||
"softfloat",
|
||||
|
Loading…
Reference in New Issue
Block a user