diff options
author | 2016-03-29 08:07:34 +0200 | |
---|---|---|
committer | 2016-03-29 08:07:34 +0200 | |
commit | 7e7cb1a2694d4437ed73795787c830d883bf65e7 (patch) | |
tree | 30a03c487e05b716d4879966abfa0d5bf0572d39 /scripts/src/emu.lua | |
parent | 6cb951b7c42d87e4b52604ecbd5317b6fc8f9665 (diff) | |
parent | c3397ae4a9ad9517f2f4818f4223a338398a92bc (diff) |
Merge pull request #757 from h0tw1r3/master
Extend system library support (nw)
Diffstat (limited to 'scripts/src/emu.lua')
-rw-r--r-- | scripts/src/emu.lua | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/scripts/src/emu.lua b/scripts/src/emu.lua index a2983d4bd78..56ff55879dd 100644 --- a/scripts/src/emu.lua +++ b/scripts/src/emu.lua @@ -30,16 +30,12 @@ includedirs { GEN_DIR .. "emu", GEN_DIR .. "emu/layout", } -if _OPTIONS["with-bundled-expat"] then - includedirs { - MAME_DIR .. "3rdparty/expat/lib", - } -end -if _OPTIONS["with-bundled-lua"] then - includedirs { - MAME_DIR .. "3rdparty/lua/src", - } -end + +includedirs { + ext_includedir("expat"), + ext_includedir("lua"), + ext_includedir("flac"), +} if (_OPTIONS["targetos"] == "windows" and _OPTIONS["osd"] ~= "osdmini") then defines { |