diff options
author | 2015-09-13 12:27:46 +0200 | |
---|---|---|
committer | 2015-09-13 12:27:46 +0200 | |
commit | 05c7edb1996be46465f3cb6e56d545776053528b (patch) | |
tree | 24b94aeb020a267481dc70d656d9979e8d325060 /scripts/src | |
parent | 954e900b78f42c0b7307682e50db928df0489ba1 (diff) |
Remove direct zlib dependency in code (nw)
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/devices.lua | 15 | ||||
-rw-r--r-- | scripts/src/emu.lua | 5 |
2 files changed, 0 insertions, 20 deletions
diff --git a/scripts/src/devices.lua b/scripts/src/devices.lua index 9985586f6f9..a79b7afa03d 100644 --- a/scripts/src/devices.lua +++ b/scripts/src/devices.lua @@ -34,11 +34,6 @@ function devicesProject(_target, _subtarget) MAME_DIR .. "3rdparty/expat/lib", } end - if _OPTIONS["with-bundled-zlib"] then - includedirs { - MAME_DIR .. "3rdparty/zlib", - } - end if _OPTIONS["with-bundled-lua"] then includedirs { MAME_DIR .. "3rdparty/lua/src", @@ -81,11 +76,6 @@ if (_OPTIONS["DRIVERS"] == nil) then MAME_DIR .. "3rdparty/expat/lib", } end - if _OPTIONS["with-bundled-zlib"] then - includedirs { - MAME_DIR .. "3rdparty/zlib", - } - end if _OPTIONS["with-bundled-lua"] then includedirs { MAME_DIR .. "3rdparty/lua/src", @@ -119,11 +109,6 @@ end MAME_DIR .. "3rdparty/expat/lib", } end - if _OPTIONS["with-bundled-zlib"] then - includedirs { - MAME_DIR .. "3rdparty/zlib", - } - end if _OPTIONS["with-bundled-lua"] then includedirs { MAME_DIR .. "3rdparty/lua/src", diff --git a/scripts/src/emu.lua b/scripts/src/emu.lua index 3ccb8bdd248..547c57e2791 100644 --- a/scripts/src/emu.lua +++ b/scripts/src/emu.lua @@ -24,11 +24,6 @@ if _OPTIONS["with-bundled-expat"] then MAME_DIR .. "3rdparty/expat/lib", } end -if _OPTIONS["with-bundled-zlib"] then - includedirs { - MAME_DIR .. "3rdparty/zlib", - } -end if _OPTIONS["with-bundled-lua"] then includedirs { MAME_DIR .. "3rdparty/lua/src", |