2015-03-25 16:37:20 +00:00
|
|
|
project "zip-lib"
|
|
|
|
language "C"
|
|
|
|
kind "StaticLib"
|
|
|
|
includedirs "include"
|
|
|
|
defines {"N_FSEEKO", "_CRT_SECURE_NO_DEPRECATE"}
|
|
|
|
flags { "StaticRuntime" }
|
|
|
|
|
2016-01-05 20:22:37 +00:00
|
|
|
files
|
2015-03-25 16:37:20 +00:00
|
|
|
{
|
|
|
|
"**.h",
|
|
|
|
"**.c"
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration "linux"
|
|
|
|
defines {"HAVE_SSIZE_T_LIBZIP", "HAVE_CONFIG_H"}
|
|
|
|
|
|
|
|
configuration "windows"
|
|
|
|
defines {"_WINDOWS"}
|
|
|
|
|
|
|
|
configuration "macosx"
|
|
|
|
defines { 'HAVE_SSIZE_T_LIBZIP' }
|
|
|
|
|
|
|
|
configuration "Release"
|
|
|
|
defines {"NDEBUG"}
|
|
|
|
flags { "OptimizeSize" }
|
|
|
|
|
|
|
|
configuration "Debug"
|
2016-01-05 20:22:37 +00:00
|
|
|
defines {"_DEBUG"}
|
|
|
|
flags { "Symbols" }
|