premake/contrib/libzip/premake5.lua
2017-04-14 03:14:27 +10:00

22 lines
359 B
Lua

project "zip-lib"
language "C"
kind "StaticLib"
includedirs "include"
defines { "N_FSEEKO" }
warnings "off"
files
{
"**.h",
"**.c"
}
filter "system:linux or bsd"
defines { "HAVE_SSIZE_T_LIBZIP", "HAVE_CONFIG_H" }
filter "system:windows"
defines { "_WINDOWS" }
filter "system:macosx"
defines { "HAVE_SSIZE_T_LIBZIP" }