xmake.lua 850 B

123456789101112131415161718192021222324
  1. package("tl_expected")
  2. set_kind("library", {headeronly = true})
  3. set_homepage("https://github.com/TartanLlama/expected")
  4. set_description("C++11/14/17 std::expected with functional-style extensions")
  5. set_license("CC0")
  6. set_urls("https://github.com/TartanLlama/expected/archive/$(version).zip",
  7. "https://github.com/TartanLlama/expected.git")
  8. add_versions("v1.0.0", "c1733556cbd3b532a02b68e2fbc2091b5bc2cccc279e4f6c6bd83877aabd4b02")
  9. on_install(function (package)
  10. os.cp("include/tl", package:installdir("include"))
  11. end)
  12. on_test(function (package)
  13. assert(package:check_cxxsnippets({test = [[
  14. void test()
  15. {
  16. tl::expected<int, int> e1 = 42;
  17. }
  18. ]]}, {configs = {languages = "c++11"}, includes = { "tl/expected.hpp"} }))
  19. end)