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.
28 lines
1.1 KiB
28 lines
1.1 KiB
package("tl_expected") |
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/TartanLlama/expected") |
|
set_description("C++11/14/17 std::expected with functional-style extensions") |
|
set_license("CC0") |
|
|
|
set_urls("https://github.com/TartanLlama/expected/archive/$(version).zip", |
|
"https://github.com/TartanLlama/expected.git") |
|
|
|
add_versions("v1.0.0", "c1733556cbd3b532a02b68e2fbc2091b5bc2cccc279e4f6c6bd83877aabd4b02") |
|
add_versions("v1.1.0", "4b2a347cf5450e99f7624247f7d78f86f3adb5e6acd33ce307094e9507615b78") |
|
|
|
add_deps("cmake") |
|
|
|
on_install(function (package) |
|
local configs = {"-DBUILD_TESTING=OFF"} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release")) |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
void test() { |
|
tl::expected<int, int> e1 = 42; |
|
} |
|
]]}, {configs = {languages = "c++11"}, includes = {"tl/expected.hpp"}})) |
|
end) |
|
|
|
|