12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package("date")
- set_homepage("https://github.com/HowardHinnant/date")
- set_description("A date and time library for use with C++11 and C++14.")
- set_license("MIT")
- add_urls("https://github.com/HowardHinnant/date/archive/refs/tags/$(version).tar.gz",
- "https://github.com/HowardHinnant/date.git")
-
- add_versions("v3.0.4", "56e05531ee8994124eeb498d0e6a5e1c3b9d4fccbecdf555fe266631368fb55f")
- add_versions("v3.0.3", "30de45a34a2605cca33a993a9ea54e8f140f23b1caf1acf3c2fd436c42c7d942")
- add_versions("v3.0.1", "7a390f200f0ccd207e8cff6757e04817c1a0aec3e327b006b7eb451c57ee3538")
- if is_plat("windows", "mingw") then
- add_syslinks("ole32", "shell32")
- elseif is_plat("macosx", "iphoneos") then
- add_frameworks("Foundation")
- end
- add_deps("cmake")
- if is_plat("macosx", "iphoneos") then
- add_deps("zlib")
- end
- on_install(function (package)
- local configs = {"-DBUILD_TZ_LIB=ON",
- "-DUSE_SYSTEM_TZ_DB=ON"}
- table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
- table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
- import("package.tools.cmake").install(package, configs)
- end)
- on_test(function (package)
- assert(package:check_cxxsnippets({test = [[
- #include <date/date.h>
- void test() {
- using namespace date;
- year_month_weekday_last{year{2015}, month{3u}, weekday_last{weekday{0u}}};
- }
- ]]}, {configs = {languages = "c++11"}}))
- assert(package:check_cxxsnippets({test = [[
- #include <date/tz.h>
- void test() {
- using namespace date;
- using namespace std::chrono;
- make_zoned(current_zone(), system_clock::now());
- }
- ]]}, {configs = {languages = "c++11"}}))
- end)
|