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.
22 lines
820 B
22 lines
820 B
1 year ago
|
package("optional-lite")
|
||
|
set_kind("library", {headeronly = true})
|
||
|
set_homepage("https://github.com/martinmoene/optional-lite")
|
||
|
set_description("optional lite - A C++17-like optional, a nullable object for C++98, C++11 and later in a single-file header-only library")
|
||
|
set_license("BSL-1.0")
|
||
|
|
||
|
add_urls("https://github.com/martinmoene/optional-lite.git")
|
||
|
add_versions("2023.05.11", "00e9cf5ca5a496e857bc6a28ffed9f4189ce6646")
|
||
|
|
||
|
on_install(function (package)
|
||
|
os.cp("include", package:installdir())
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
#include <nonstd/optional.hpp>
|
||
|
nonstd::optional<int> test() {
|
||
|
return nonstd::nullopt;
|
||
|
}
|
||
|
]]}, {configs = {languages = "c++11"}}))
|
||
|
end)
|