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.
23 lines
766 B
23 lines
766 B
package("semver") |
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/Neargye/semver") |
|
set_description("Semantic Versioning for modern C++") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/Neargye/semver.git") |
|
|
|
add_versions("2023.10.04", "92df4b229d0f43382f5934ed50d6489d44e4a9c4") |
|
add_versions("2023.05.27", "492ba1beb1da6a4f150b8ca45985290f152396ed") |
|
|
|
on_install(function (package) |
|
os.cp("include", package:installdir()) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <semver.hpp> |
|
void test() { |
|
constexpr semver::version v1{1, 4, 3}; |
|
} |
|
]]}, {configs = {languages = "c++17"}})) |
|
end)
|
|
|