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
2.0 KiB
43 lines
2.0 KiB
package("taskflow") |
|
|
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://taskflow.github.io/") |
|
set_description("A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/taskflow/taskflow.git") |
|
add_urls("https://github.com/taskflow/taskflow/archive/$(version).tar.gz") |
|
add_versions("v3.7.0", "788b88093fb3788329ebbf7c7ee05d1f8960d974985a301798df01e77e04233b") |
|
add_versions("v3.6.0", "5a1cd9cf89f93a97fcace58fd73ed2fc8ee2053bcb43e047acb6bc121c3edf4c") |
|
add_versions("v3.5.0", "33c44e0da7dfda694d2b431724d6c8fd25a889ad0afbb4a32e8da82e2e9c2a92") |
|
add_versions("v3.4.0", "8f449137d3f642b43e905aeacdf1d7c5365037d5e1586103ed4f459f87cecf89") |
|
add_versions("v3.3.0", "66b891f706ba99a5ca5ed239d520ad6943ebe94728d1c89e07a939615a6488ef") |
|
add_versions("v3.2.0", "26c37a494789fedc5de8d1f8452dc8a7774a220d02c14d5b19efe0dfe0359c0c") |
|
add_versions("v3.1.0", "17b56e23312d20c4ad5cc497b9f42cd0ad4451dbd2df0160a0a692fd16d47143") |
|
add_versions("v3.0.0", "553c88a6e56e115d29ac1520b8a0fea4557a5fcda1af1427bd3ba454926d03a2") |
|
|
|
if is_plat("linux") then |
|
add_syslinks("pthread") |
|
end |
|
|
|
on_install("linux", "macosx", "windows", "iphoneos", "android", "cross", "mingw", "bsd", function (package) |
|
os.cp("taskflow", package:installdir("include")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <taskflow/taskflow.hpp> |
|
#include <taskflow/algorithm/for_each.hpp> |
|
static void test() { |
|
tf::Executor executor; |
|
tf::Taskflow taskflow; |
|
std::vector<int> range(10); |
|
std::iota(range.begin(), range.end(), 0); |
|
taskflow.for_each(range.begin(), range.end(), [&] (int i) { |
|
printf("for_each on container item: %d\n", i); |
|
}); |
|
executor.run(taskflow).wait(); |
|
} |
|
]]}, {configs = {languages = "c++17"}})) |
|
end) |
|
|
|
|