package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
3.2 KiB
65 lines
3.2 KiB
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.31", "c8d9b28083c7a9c32af2cbff1d90fe1e62def989f0f89baba1244c44fb8ec9e4") |
|
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)
|
|
|