xmake.lua 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package("cpr")
  2. set_homepage("https://docs.libcpr.org/")
  3. set_description("C++ Requests is a simple wrapper around libcurl inspired by the excellent Python Requests project.")
  4. set_license("MIT")
  5. set_urls("https://github.com/libcpr/cpr/archive/refs/tags/$(version).tar.gz",
  6. "https://github.com/libcpr/cpr.git")
  7. add_versions("1.11.2", "3795a3581109a9ba5e48fbb50f9efe3399a3ede22f2ab606b71059a615cd6084")
  8. add_versions("1.11.1", "e84b8ef348f41072609f53aab05bdaab24bf5916c62d99651dfbeaf282a8e0a2")
  9. add_versions("1.10.5", "c8590568996cea918d7cf7ec6845d954b9b95ab2c4980b365f582a665dea08d8")
  10. add_versions("1.10.2", "044e98079032f7abf69c4c82f90ee2b4e4a7d2f28245498a5201ad6e8d0b1d08")
  11. add_versions("1.10.3", "d7f2574bd9dae8adb0ce6cf1afab119b509c297fffcb4204a1bb3e4e731074f2")
  12. add_versions("1.9.4", "2fbb27716c010d8a28e52d5bc8f108e0d073ca3b3f5a48a2696b0231ea5196d5")
  13. add_versions("1.8.3", "0784d4c2dbb93a0d3009820b7858976424c56578ce23dcd89d06a1d0bf5fd8e2")
  14. add_versions("1.7.2", "aa38a414fe2ffc49af13a08b6ab34df825fdd2e7a1213d032d835a779e14176f")
  15. add_versions("1.6.2", "c45f9c55797380c6ba44060f0c73713fbd7989eeb1147aedb8723aa14f3afaa3")
  16. add_configs("ssl", {description = "Enable SSL.", default = false, type = "boolean"})
  17. add_deps("cmake")
  18. if is_plat("linux") then
  19. add_syslinks("pthread")
  20. end
  21. add_links("cpr")
  22. if on_check then
  23. on_check(function (package)
  24. -- Require to fIX cmake try run
  25. if package:version() and package:version():eq("1.6.2") then
  26. if package:is_cross() then
  27. raise("package(cpr 1.6.2) unsupported cross-compilation")
  28. end
  29. end
  30. end)
  31. end
  32. on_load(function (package)
  33. if package:config("ssl") then
  34. package:add("deps", "libcurl", {configs = {libssh2 = true, zlib = true}})
  35. package:add("deps", "libssh2")
  36. else
  37. package:add("deps", "libcurl")
  38. end
  39. end)
  40. on_install("!wasm and !bsd", function (package)
  41. io.replace("CMakeLists.txt", "-Werror", "", {plain = true})
  42. if package:is_plat("windows") or (package:is_plat("android") and is_subhost("windows")) then
  43. -- fix find_package issue on windows
  44. io.replace("CMakeLists.txt", "find_package%(CURL COMPONENTS .-%)", "find_package(CURL)")
  45. end
  46. local configs = {
  47. "-DCPR_BUILD_TESTS=OFF",
  48. "-DCPR_FORCE_USE_SYSTEM_CURL=ON",
  49. "-DCPR_USE_SYSTEM_CURL=ON",
  50. }
  51. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
  52. table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  53. table.insert(configs, "-DCPR_ENABLE_SSL=" .. (package:config("ssl") and "ON" or "OFF"))
  54. local opt = {}
  55. opt.packagedeps = {"libcurl"}
  56. if package:config("ssl") then
  57. table.insert(opt.packagedeps, "libssh2")
  58. end
  59. if package:is_plat("windows") and package:has_tool("cxx", "cl", "clang_cl") then
  60. opt.cxflags = {"/EHsc"}
  61. end
  62. if package:config("shared") and package:is_plat("macosx") then
  63. opt.shflags = {"-framework", "CoreFoundation", "-framework", "Security", "-framework", "SystemConfiguration"}
  64. end
  65. import("package.tools.cmake").install(package, configs, opt)
  66. end)
  67. on_test(function (package)
  68. assert(package:check_cxxsnippets({test = [[
  69. #include <cassert>
  70. #include <cpr/cpr.h>
  71. static void test() {
  72. cpr::Response r = cpr::Get(cpr::Url{"https://xmake.io"});
  73. assert(r.status_code == 200);
  74. }
  75. ]]}, {configs = {languages = "c++17"}}))
  76. end)