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.
43 lines
1.7 KiB
43 lines
1.7 KiB
package("enkits") |
|
set_homepage("https://github.com/dougbinks/enkiTS") |
|
set_description("A permissively licensed C and C++ Task Scheduler for creating parallel programs.") |
|
set_license("zlib") |
|
|
|
add_urls("https://github.com/dougbinks/enkiTS/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/dougbinks/enkiTS.git") |
|
|
|
add_versions("v1.11", "b57a782a6a68146169d29d180d3553bfecb9f1a0e87a5159082331920e7d297e") |
|
add_versions("v1.10", "578f285fc7c2744bf831548f35b855c6ab06c0d541d08c9cc50b6b72a250811a") |
|
|
|
add_deps("cmake") |
|
add_linkdirs("lib/enkiTS") |
|
add_links("enkiTS") |
|
if is_plat("linux", "bsd") then |
|
add_syslinks("pthread", "rt") |
|
end |
|
|
|
on_load("windows", function (package) |
|
if package:config("shared") then |
|
package:add("defines", "ENKITS_DLL") |
|
end |
|
end) |
|
|
|
on_install(function (package) |
|
if package:is_plat("linux") then |
|
io.replace("src/TaskScheduler.h", "#include <functional>", "#include <functional>\n#include <initializer_list>\n", {plain = true}) |
|
end |
|
|
|
local configs = {"-DENKITS_BUILD_EXAMPLES=OFF", "-DENKITS_INSTALL=ON"} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DENKITS_BUILD_SHARED=" .. (package:config("shared") and "ON" or "OFF")) |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets([[ |
|
void test() { |
|
enki::TaskScheduler g_TS; |
|
g_TS.Initialize(); |
|
} |
|
]], {configs = {languages = "c++17"}, includes = "enkiTS/TaskScheduler.h"})) |
|
end)
|
|
|