Переглянути джерело

Update pugixml to v1.15 (#6166)

* init

* try to help WASM https://github.com/emscripten-core/emscripten/issues/15276

* retry

* fixup

* fixup

* testing wchar_t

* testing no exceptions

* testing exports

* test for exports

* test header only option, cpp file should be in include folder as well

* Update xmake.lua

* Update xmake.lua

* Make wchar turned off by default

---------

Co-authored-by: star9029 <[email protected]>
Saikari 6 місяців тому
батько
коміт
376edcc845

+ 4 - 0
packages/p/pugixml/port/sharedwasm.cmake

@@ -0,0 +1,4 @@
+set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE)
+set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-s SIDE_MODULE=1")
+set(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS "-s SIDE_MODULE=1")
+set(CMAKE_STRIP FALSE)

+ 38 - 8
packages/p/pugixml/xmake.lua

@@ -3,23 +3,53 @@ package("pugixml")
     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/$(version).tar.gz",
+    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_deps("cmake")
+    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)
-        local configs = {}
-        table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package: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("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
-        import("package.tools.cmake").install(package, configs)
     end)
 
     on_test(function (package)