premake/contrib/libzip/premake5.lua

22 lines
359 B
Lua
Raw Normal View History

project "zip-lib"
language "C"
kind "StaticLib"
includedirs "include"
2016-02-05 18:11:08 +00:00
defines { "N_FSEEKO" }
2016-02-25 22:02:51 +00:00
warnings "off"
files
{
"**.h",
"**.c"
}
2017-04-13 17:07:20 +00:00
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" }