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.
27 lines
1.1 KiB
27 lines
1.1 KiB
package("croncpp") |
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/mariusbancila/croncpp") |
|
set_description("A C++11/14/17 header-only cross-platform library for handling CRON expressions") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/mariusbancila/croncpp/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/mariusbancila/croncpp.git") |
|
|
|
add_versions("v2023.03.30", "0731b7f900a670c009585eb5e9639722aeff6531dbbd5bfc9ce895459733837e") |
|
|
|
on_install(function (package) |
|
os.cp("include", package:installdir()) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <iostream> |
|
#include <ctime> |
|
int main() { |
|
auto cr = cron::make_cron("* 0/5 * * * ?"); |
|
auto time = cron::utils::to_tm("2024-08-28 20:01:00"); |
|
auto next = cron::cron_next(cr, time); |
|
std::cout << std::asctime(&next); |
|
} |
|
]]}, {configs = {languages = "c++14"}, includes = "croncpp.h"})) |
|
end)
|
|
|