xmake.lua 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.33", "0a57af1018e2ca89c9cd95ae134c4b2af2c8e803c81ebee5433495776830eea6")
  8. add_versions("v0.32", "b0b7a294704f1ab779b95ab433eb5f4a2859db3539108a0e08709fc97f6bccee")
  9. add_versions("v0.31", "c8d9b28083c7a9c32af2cbff1d90fe1e62def989f0f89baba1244c44fb8ec9e4")
  10. add_versions("v0.30", "d143bfce1d18d42ab0f072acfe239d1cc07a495411537579e02260673cbe8121")
  11. add_configs("boost_asio", {description = "Build with boost:asio", default = false, type = "boolean"})
  12. add_configs("libev", {description = "Build with libev", default = false, type = "boolean"})
  13. add_configs("fltk", {description = "Build with fltk", default = false, type = "boolean"})
  14. add_configs("thread", {description = "Build with thread", default = false, type = "boolean"})
  15. add_configs("multithreading", {description = "Build with multithreading", default = false, type = "boolean"})
  16. add_deps("cmake")
  17. add_deps("boost", {configs = {date_time = true, regex = true, system = true}})
  18. on_load(function (package)
  19. if package:config("boost_asio") or package:config("thread") then
  20. if package:is_plat("linux", "bsd") then
  21. package:add("syslinks", "pthread")
  22. end
  23. end
  24. if package:config("libev") then
  25. package:add("deps", "libev")
  26. end
  27. if package:config("fltk") then
  28. package:add("deps", "fltk")
  29. end
  30. if package:config("multithreading") then
  31. package:add("defines", "ROTOR_REFCOUNT_THREADUNSAFE")
  32. end
  33. if not package:config("shared") then
  34. package:add("defines", "ROTOR_STATIC_DEFINE")
  35. end
  36. end)
  37. on_install("windows", "linux", "macosx", "bsd", "mingw", "cross", function (package)
  38. local configs = {"-DBUILD_TESTING=OFF"}
  39. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
  40. table.insert(configs, "-DROTOR_DEBUG_DELIVERY=" .. (package:is_debug() and "ON" or "OFF"))
  41. table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  42. if package:is_plat("windows") then
  43. table.insert(configs, "-DBoost_USE_STATIC_RUNTIME=" .. (package:has_runtime("MT", "MTd") and "ON" or "OFF"))
  44. end
  45. table.insert(configs, "-DBUILD_BOOST_ASIO=" .. (package:config("boost_asio") and "ON" or "OFF"))
  46. table.insert(configs, "-DBUILD_EV=" .. (package:config("libev") and "ON" or "OFF"))
  47. table.insert(configs, "-DBUILD_FLTK=" .. (package:config("fltk") and "ON" or "OFF"))
  48. table.insert(configs, "-DBUILD_THREAD=" .. (package:config("thread") and "ON" or "OFF"))
  49. table.insert(configs, "-DBUILD_THREAD_UNSAFE=" .. (package:config("multithreading") and "ON" or "OFF"))
  50. import("package.tools.cmake").install(package, configs)
  51. end)
  52. on_test(function (package)
  53. assert(package:check_cxxsnippets({test = [[
  54. void test() {
  55. rotor::system_context_t ctx{};
  56. }
  57. ]]}, {configs = {languages = "c++17"}, includes = "rotor.hpp"}))
  58. end)