xmake.lua 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package("aws-c-io")
  2. set_homepage("https://github.com/awslabs/aws-c-io")
  3. set_description("This is a module for the AWS SDK for C. It handles all IO and TLS work for application protocols. ")
  4. set_license("Apache-2.0")
  5. add_urls("https://github.com/awslabs/aws-c-io/archive/refs/tags/$(version).tar.gz",
  6. "https://github.com/awslabs/aws-c-io.git")
  7. add_versions("v0.14.9", "3a3b7236f70209ac12b5bafa7dd81b75cc68b691a0aa0686d6d3b7e4bbe5fbc9")
  8. add_versions("v0.14.8", "d50e21fdbd5170a4071fe067ef4ce297b02cb058ad47e118305e25f6e07d9cf0")
  9. add_versions("v0.14.7", "ecf1f660d7d43913aa8a416be6a2027101ce87c3b241344342d608335b4df7d4")
  10. add_versions("v0.14.6", "bb3af305af748185b1c7b17afa343e54f2d494ccff397402f1b17041b0967865")
  11. add_versions("v0.14.5", "2700bcde062f7de1c1cbfd236b9fdfc9b24b4aa6dc0fb09bb156e16e07ebd0b6")
  12. add_versions("v0.13.32", "2a6b18c544d014ca4f55cb96002dbbc1e52a2120541c809fa974cb0838ea72cc")
  13. add_configs("asan", {description = "Enable Address Sanitize.", default = false, type = "boolean"})
  14. if is_plat("windows") then
  15. add_syslinks("advapi32", "crypt32", "secur32", "ncrypt")
  16. elseif is_plat("linux", "bsd", "cross") then
  17. add_deps("s2n-tls")
  18. elseif is_plat("macosx") then
  19. add_frameworks("Security")
  20. end
  21. add_deps("cmake", "aws-c-common", "aws-c-cal")
  22. on_install("windows|x64", "windows|x86", "linux", "macosx", "bsd", "msys", "cross", function (package)
  23. local cmakedir = package:dep("aws-c-common"):installdir("lib", "cmake")
  24. if package:is_plat("windows") then
  25. cmakedir = cmakedir:gsub("\\", "/")
  26. end
  27. local configs = {"-DBUILD_TESTING=OFF", "-DCMAKE_MODULE_PATH=" .. cmakedir}
  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, "-DENABLE_SANITIZERS=" .. (package:config("asan") and "ON" or "OFF"))
  31. if package:is_plat("windows") then
  32. table.insert(configs, "-DAWS_STATIC_MSVC_RUNTIME_LIBRARY=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
  33. end
  34. import("package.tools.cmake").install(package, configs)
  35. end)
  36. on_test(function (package)
  37. assert(package:has_cfuncs("aws_io_library_init", {includes = "aws/io/io.h"}))
  38. end)