xmake.lua 3.6 KB

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