xmake.lua 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package("upa-url")
  2. set_homepage("https://upa-url.github.io/docs/")
  3. set_description("An implementation of the WHATWG URL Standard in C++")
  4. set_license("BSD-2-Clause")
  5. add_urls("https://github.com/upa-url/upa/archive/refs/tags/$(version).tar.gz",
  6. "https://github.com/upa-url/upa.git", {submodules = false})
  7. add_versions("v2.2.0", "7b6d5e5774d0264ef2be0782ec3548e191ef113b34983323791a914a00de0d3a")
  8. add_versions("v2.1.0", "4a5edae83dc5c9a2aacfdb4720d6bce3ceff5edfb19213615b1e95a44a7793fe")
  9. add_versions("v2.0.0", "50e0d7c9cad853c794f9b12aded960dbdcf3ba6baa8bc9896da52fe526cc014e")
  10. add_versions("v1.2.0", "5d8a251ffd708a14f9faf2ea29dae934cb4b29c5473bd2bcf2e3d16eccaeacb7")
  11. add_versions("v1.0.2", "d08a724c1868530b1c0b89ebeaaf2d654f7e6489c968a3dc2255b1f21ddc94e0")
  12. add_versions("v1.0.1", "458d49c1e84063a2e38b40f5dae5ba01e618e7fba29550f9cc01bf10d04ff7a1")
  13. add_versions("v1.0.0", "9ad14357c177f7c038a447996a065995e074eb5447015467687726c5d221b5f4")
  14. add_configs("tools", {description = "Build tools", default = false, type = "boolean"})
  15. add_configs("cmake", {description = "Use cmake build system", default = true, type = "boolean"})
  16. on_load(function (package)
  17. if package:is_plat("windows") and package:config("shared") then
  18. package:config_set("cmake", false)
  19. end
  20. if package:config("cmake") then
  21. package:add("deps", "cmake")
  22. end
  23. end)
  24. on_install(function (package)
  25. if package:config("cmake") then
  26. io.replace("CMakeLists.txt", "STATIC", "", {plain = true})
  27. local configs = {"-DURL_BUILD_TESTS=OFF", "-DUPA_BUILD_TESTS=OFF"}
  28. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
  29. table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  30. table.insert(configs, "-DUPA_BUILD_TOOLS=" .. (package:config("tools") and "ON" or "OFF"))
  31. import("package.tools.cmake").install(package, configs)
  32. else
  33. io.writefile("xmake.lua", [[
  34. add_rules("mode.debug", "mode.release")
  35. set_languages("c++17")
  36. target("upa_url")
  37. set_kind("$(kind)")
  38. add_files("src/*.cpp")
  39. add_includedirs("include")
  40. add_headerfiles("include/(upa/*.h)")
  41. if is_plat("windows") and is_kind("shared") then
  42. add_rules("utils.symbols.export_all", {export_classes = true})
  43. end
  44. ]])
  45. import("package.tools.xmake").install(package)
  46. end
  47. end)
  48. on_test(function (package)
  49. assert(package:check_cxxsnippets({test = [[
  50. void test() {
  51. upa::url url{"https://xmake.io/"};
  52. }
  53. ]]}, {configs = {languages = "c++17"}, includes = "upa/url.h"}))
  54. end)