Skip to content

Commit

Permalink
cpp-rotor: add package (#5116)
Browse files Browse the repository at this point in the history
* cpp-rotor: add package

* fix boost ucrt
  • Loading branch information
star-hengxing committed Sep 2, 2024
1 parent b408cba commit b4edbd6
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions packages/c/cpp-rotor/xmake.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
package("cpp-rotor")
set_homepage("https://github.com/basiliscos/cpp-rotor")
set_description("Event loop friendly C++ actor micro-framework, supervisable")
set_license("MIT")

add_urls("https://github.com/basiliscos/cpp-rotor/archive/refs/tags/$(version).tar.gz",
"https://github.com/basiliscos/cpp-rotor.git", {submodules = false})

add_versions("v0.30", "d143bfce1d18d42ab0f072acfe239d1cc07a495411537579e02260673cbe8121")

add_configs("boost_asio", {description = "Build with boost:asio", default = false, type = "boolean"})
add_configs("libev", {description = "Build with libev", default = false, type = "boolean"})
add_configs("fltk", {description = "Build with fltk", default = false, type = "boolean"})
add_configs("thread", {description = "Build with thread", default = false, type = "boolean"})
add_configs("multithreading", {description = "Build with multithreading", default = false, type = "boolean"})

add_deps("cmake")
add_deps("boost", {configs = {date_time = true, regex = true, system = true}})

on_load(function (package)
if package:config("boost_asio") or package:config("thread") then
if package:is_plat("linux", "bsd") then
package:add("syslinks", "pthread")
end
end
if package:config("libev") then
package:add("deps", "libev")
end
if package:config("fltk") then
package:add("deps", "fltk")
end

if package:config("multithreading") then
package:add("defines", "ROTOR_REFCOUNT_THREADUNSAFE")
end
if not package:config("shared") then
package:add("defines", "ROTOR_STATIC_DEFINE")
end
end)

on_install("windows", "linux", "macosx", "bsd", "mingw", "cross", function (package)
local configs = {"-DBUILD_TESTING=OFF"}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DROTOR_DEBUG_DELIVERY=" .. (package:is_debug() and "ON" or "OFF"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
if package:is_plat("windows") then
table.insert(configs, "-DBoost_USE_STATIC_RUNTIME=" .. (package:has_runtime("MT", "MTd") and "ON" or "OFF"))
end

table.insert(configs, "-DBUILD_BOOST_ASIO=" .. (package:config("boost_asio") and "ON" or "OFF"))
table.insert(configs, "-DBUILD_EV=" .. (package:config("libev") and "ON" or "OFF"))
table.insert(configs, "-DBUILD_FLTK=" .. (package:config("fltk") and "ON" or "OFF"))
table.insert(configs, "-DBUILD_THREAD=" .. (package:config("thread") and "ON" or "OFF"))
table.insert(configs, "-DBUILD_THREAD_UNSAFE=" .. (package:config("multithreading") and "ON" or "OFF"))
import("package.tools.cmake").install(package, configs)
end)

on_test(function (package)
assert(package:check_cxxsnippets({test = [[
void test() {
rotor::system_context_t ctx{};
}
]]}, {configs = {languages = "c++17"}, includes = "rotor.hpp"}))
end)

0 comments on commit b4edbd6

Please sign in to comment.