xmake.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.8", "d50e21fdbd5170a4071fe067ef4ce297b02cb058ad47e118305e25f6e07d9cf0")
  8. add_versions("v0.14.7", "ecf1f660d7d43913aa8a416be6a2027101ce87c3b241344342d608335b4df7d4")
  9. add_versions("v0.14.6", "bb3af305af748185b1c7b17afa343e54f2d494ccff397402f1b17041b0967865")
  10. add_versions("v0.14.5", "2700bcde062f7de1c1cbfd236b9fdfc9b24b4aa6dc0fb09bb156e16e07ebd0b6")
  11. add_versions("v0.13.32", "2a6b18c544d014ca4f55cb96002dbbc1e52a2120541c809fa974cb0838ea72cc")
  12. add_configs("asan", {description = "Enable Address Sanitize.", default = false, type = "boolean"})
  13. if is_plat("windows") then
  14. add_syslinks("advapi32", "crypt32", "secur32", "ncrypt")
  15. elseif is_plat("linux", "bsd", "cross") then
  16. add_deps("s2n-tls")
  17. elseif is_plat("macosx") then
  18. add_frameworks("Security")
  19. end
  20. add_deps("cmake", "aws-c-common", "aws-c-cal")
  21. on_install("windows|x64", "windows|x86", "linux", "macosx", "bsd", "msys", "cross", function (package)
  22. local cmakedir = package:dep("aws-c-common"):installdir("lib", "cmake")
  23. if package:is_plat("windows") then
  24. cmakedir = cmakedir:gsub("\\", "/")
  25. end
  26. local configs = {"-DBUILD_TESTING=OFF", "-DCMAKE_MODULE_PATH=" .. cmakedir}
  27. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
  28. table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  29. table.insert(configs, "-DENABLE_SANITIZERS=" .. (package:config("asan") and "ON" or "OFF"))
  30. if package:is_plat("windows") then
  31. table.insert(configs, "-DAWS_STATIC_MSVC_RUNTIME_LIBRARY=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
  32. end
  33. import("package.tools.cmake").install(package, configs)
  34. end)
  35. on_test(function (package)
  36. assert(package:has_cfuncs("aws_io_library_init", {includes = "aws/io/io.h"}))
  37. end)