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.
36 lines
1.3 KiB
36 lines
1.3 KiB
package("paul_thread_pool") |
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/DeveloperPaul123/thread-pool") |
|
set_description("A modern, fast, lightweight thread pool library based on C++20") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/DeveloperPaul123/thread-pool/archive/refs/tags/$(version).zip", |
|
"https://github.com/DeveloperPaul123/thread-pool.git") |
|
|
|
add_versions("0.7.0", "efb689fe5b02ddf039558a0f90c6ebc774b676e5ebb7176c14fb0107f023f4a6") |
|
add_versions("0.6.2", "a2b722560449da53faf4753288a5fb2074d88b1fa9bba257c85425b3e48ecb2c") |
|
|
|
on_check(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <thread> |
|
void test() { |
|
std::jthread t; |
|
} |
|
]]}, {configs = {languages = "c++20"}}), "package(paul_thread_pool) require c++20 jthread") |
|
end) |
|
|
|
on_install(function (package) |
|
os.cp("include", package:installdir()) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <thread> |
|
#include <thread_pool/thread_pool.h> |
|
|
|
void test() |
|
{ |
|
dp::thread_pool pool; |
|
} |
|
]]}, {configs = {languages = "c++20"}})) |
|
end)
|
|
|