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.
62 lines
3.1 KiB
62 lines
3.1 KiB
package("pugixml") |
|
set_homepage("https://pugixml.org/") |
|
set_description("Light-weight, simple and fast XML parser for C++ with XPath support") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/zeux/pugixml/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/zeux/pugixml.git") |
|
|
|
add_versions("v1.11.4", "017139251c122dbff400a507cddc4cb74120a431a50c6c524f30edcc5b331ade") |
|
add_versions("v1.13", "5c5ad5d7caeb791420408042a7d88c2c6180781bf218feca259fd9d840a888e1") |
|
add_versions("v1.14", "610f98375424b5614754a6f34a491adbddaaec074e9044577d965160ec103d2e") |
|
add_versions("v1.15", "b39647064d9e28297a34278bfb897092bf33b7c487906ddfc094c9e8868bddcb") |
|
|
|
add_configs("wchar", {description = "Enable wchar_t mode", default = false, type = "boolean"}) |
|
add_configs("exceptions", {description = "Enable exceptions", default = true, type = "boolean"}) |
|
add_configs("headeronly", {description = "Install headerfiles only", default = false, type = "boolean"}) |
|
|
|
on_load(function (package) |
|
if package:config("headeronly") then |
|
package:set("kind", "library", {headeronly = true}) |
|
else |
|
package:add("deps", "cmake") |
|
end |
|
end) |
|
|
|
on_install(function (package) |
|
if package:config("wchar") then |
|
io.replace("src/pugiconfig.hpp", "// #define PUGIXML_WCHAR_MODE", "#define PUGIXML_WCHAR_MODE", {plain = true}) |
|
end |
|
if not package:config("exceptions") then |
|
io.replace("src/pugiconfig.hpp", "// #define PUGIXML_NO_EXCEPTIONS", "#define PUGIXML_NO_EXCEPTIONS", {plain = true}) |
|
end |
|
|
|
if package:config("headeronly") then |
|
io.replace("src/pugiconfig.hpp", "// #define PUGIXML_HEADER_ONLY", "#define PUGIXML_HEADER_ONLY", {plain = true}) |
|
os.cp("src/*", package:installdir("include")) |
|
else |
|
local configs = {} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) |
|
if package:is_plat("windows") then |
|
table.insert(configs, "-DSTATIC_CRT=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF")) |
|
if package:config("shared") then |
|
io.replace("src/pugiconfig.hpp", "// #define PUGIXML_API __declspec(dllexport)", "#define PUGIXML_API __declspec(dllexport)", {plain = true}) |
|
end |
|
end |
|
if package:is_plat("wasm") and package:config("shared") then |
|
os.cp(path.join(package:scriptdir(), "port", "sharedwasm.cmake"), "sharedwasm.cmake") |
|
table.insert(configs, "-DCMAKE_PROJECT_INCLUDE=sharedwasm.cmake") |
|
end |
|
import("package.tools.cmake").install(package, configs) |
|
end |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
void test() { |
|
pugi::xml_document doc; |
|
pugi::xpath_node_set nset; |
|
} |
|
]]}, {configs = {languages = "c++11"}, includes = "pugixml.hpp"})) |
|
end)
|
|
|