xmake.lua 1001 B

12345678910111213141516171819202122232425262728
  1. package("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_load(function (package)
  10. cprint("${yellow}the expected package has been renamed to tl_expected, please update its name!${clear}")
  11. end)
  12. on_install(function (package)
  13. os.cp("include/tl", package:installdir("include"))
  14. end)
  15. on_test(function (package)
  16. assert(package:check_cxxsnippets({test = [[
  17. void test()
  18. {
  19. tl::expected<int, int> e1 = 42;
  20. }
  21. ]]}, {configs = {languages = "c++11"}, includes = { "tl/expected.hpp"} }))
  22. end)