package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

57 lines
1.4 KiB

set_allowedplats("windows", "linux", "macosx", "mingw", "cross")
option("libzip", {showmenu = true, default = false})
option("minizip_ng", {showmenu = true, default = false})
option("wide", {showmenu = true, default = false})
add_rules("mode.debug", "mode.release")
if has_config("wide") then
add_requires("expat", {configs = {char_type = "wchar_t"}})
else
add_requires("expat")
end
if has_config("libzip") then
add_requires("libzip")
elseif has_config("minizip_ng") then
add_requires("minizip-ng", {configs = {zlib = true}})
else
add_requires("minizip")
end
target("xlsxio")
set_kind("$(kind)")
add_files("lib/*.c")
add_includedirs("include")
add_headerfiles("include/*.h")
add_defines("BUILD_XLSXIO")
if is_kind("shared") then
add_defines("BUILD_XLSXIO_SHARED", {public = true})
else
add_defines("BUILD_XLSXIO_STATIC", {public = true})
end
if has_config("wide") then
add_defines("XML_UNICODE", {public = true})
end
if is_plat("linux", "bsd") then
add_syslinks("pthread")
end
if has_config("libzip") then
add_defines("USE_LIBZIP")
add_packages("libzip")
else
add_defines("USE_MINIZIP")
if has_config("minizip_ng") then
add_defines("USE_MINIZIP_NG")
add_packages("minizip-ng")
else
add_packages("minizip")
end
end
add_packages("expat")