xmake.lua 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package("cpp-rotor")
  2. set_homepage("https://github.com/basiliscos/cpp-rotor")
  3. set_description("Event loop friendly C++ actor micro-framework, supervisable")
  4. set_license("MIT")
  5. add_urls("https://github.com/basiliscos/cpp-rotor/archive/refs/tags/$(version).tar.gz",
  6. "https://github.com/basiliscos/cpp-rotor.git", {submodules = false})
  7. add_versions("v0.32", "b0b7a294704f1ab779b95ab433eb5f4a2859db3539108a0e08709fc97f6bccee")
  8. add_versions("v0.31", "c8d9b28083c7a9c32af2cbff1d90fe1e62def989f0f89baba1244c44fb8ec9e4")
  9. add_versions("v0.30", "d143bfce1d18d42ab0f072acfe239d1cc07a495411537579e02260673cbe8121")
  10. add_configs("boost_asio", {description = "Build with boost:asio", default = false, type = "boolean"})
  11. add_configs("libev", {description = "Build with libev", default = false, type = "boolean"})
  12. add_configs("fltk", {description = "Build with fltk", default = false, type = "boolean"})
  13. add_configs("thread", {description = "Build with thread", default = false, type = "boolean"})
  14. add_configs("multithreading", {description = "Build with multithreading", default = false, type = "boolean"})
  15. add_deps("cmake")
  16. add_deps("boost", {configs = {date_time = true, regex = true, system = true}})
  17. on_load(function (package)
  18. if package:config("boost_asio") or package:config("thread") then
  19. if package:is_plat("linux", "bsd") then
  20. package:add("syslinks", "pthread")
  21. end
  22. end
  23. if package:config("libev") then
  24. package:add("deps", "libev")
  25. end
  26. if package:config("fltk") then
  27. package:add("deps", "fltk")
  28. end
  29. if package:config("multithreading") then
  30. package:add("defines", "ROTOR_REFCOUNT_THREADUNSAFE")
  31. end
  32. if not package:config("shared") then
  33. package:add("defines", "ROTOR_STATIC_DEFINE")
  34. end
  35. end)
  36. on_install("windows", "linux", "macosx", "bsd", "mingw", "cross", function (package)
  37. local configs = {"-DBUILD_TESTING=OFF"}
  38. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
  39. table.insert(configs, "-DROTOR_DEBUG_DELIVERY=" .. (package:is_debug() and "ON" or "OFF"))
  40. table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  41. if package:is_plat("windows") then
  42. table.insert(configs, "-DBoost_USE_STATIC_RUNTIME=" .. (package:has_runtime("MT", "MTd") and "ON" or "OFF"))
  43. end
  44. table.insert(configs, "-DBUILD_BOOST_ASIO=" .. (package:config("boost_asio") and "ON" or "OFF"))
  45. table.insert(configs, "-DBUILD_EV=" .. (package:config("libev") and "ON" or "OFF"))
  46. table.insert(configs, "-DBUILD_FLTK=" .. (package:config("fltk") and "ON" or "OFF"))
  47. table.insert(configs, "-DBUILD_THREAD=" .. (package:config("thread") and "ON" or "OFF"))
  48. table.insert(configs, "-DBUILD_THREAD_UNSAFE=" .. (package:config("multithreading") and "ON" or "OFF"))
  49. import("package.tools.cmake").install(package, configs)
  50. end)
  51. on_test(function (package)
  52. assert(package:check_cxxsnippets({test = [[
  53. void test() {
  54. rotor::system_context_t ctx{};
  55. }
  56. ]]}, {configs = {languages = "c++17"}, includes = "rotor.hpp"}))
  57. end)