xmake.lua 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package("aws-c-http")
  2. set_homepage("https://github.com/awslabs/aws-c-http")
  3. set_description("C99 implementation of the HTTP/1.1 and HTTP/2 specifications")
  4. set_license("Apache-2.0")
  5. add_urls("https://github.com/awslabs/aws-c-http/archive/refs/tags/$(version).tar.gz",
  6. "https://github.com/awslabs/aws-c-http.git")
  7. add_versions("v0.8.2", "a76ba75e59e1ac169df3ec00c0d1c453db1a4db85ee8acd3282a85ee63d6b31c")
  8. add_versions("v0.8.1", "83fb47e2d7956469bb328f16dea96663e96f8f20dc60dc4e9676b82804588530")
  9. add_versions("v0.7.12", "0f92f295c96e10aa9c1e66ac73c038ee9d9c61e1be7551e721ee0dab9c89fc6f")
  10. add_configs("asan", {description = "Enable Address Sanitize.", default = false, type = "boolean"})
  11. add_deps("cmake", "aws-c-cal", "aws-c-io", "aws-c-compression")
  12. on_install("windows|x64", "windows|x86", "linux", "macosx", "bsd", "msys", "cross", function (package)
  13. local cmakedir = package:dep("aws-c-common"):installdir("lib", "cmake")
  14. if package:is_plat("windows") then
  15. cmakedir = cmakedir:gsub("\\", "/")
  16. end
  17. local configs = {"-DBUILD_TESTING=OFF", "-DCMAKE_MODULE_PATH=" .. cmakedir}
  18. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
  19. table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  20. table.insert(configs, "-DENABLE_SANITIZERS=" .. (package:config("asan") and "ON" or "OFF"))
  21. if package:is_plat("windows") then
  22. table.insert(configs, "-DAWS_STATIC_MSVC_RUNTIME_LIBRARY=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
  23. end
  24. import("package.tools.cmake").install(package, configs)
  25. end)
  26. on_test(function (package)
  27. assert(package:has_cfuncs("aws_http_message_new_request", {includes = "aws/http/request_response.h"}))
  28. end)