xmake.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. package("microsoft-gsl")
  2. set_kind("library", {headeronly = true})
  3. set_homepage("https://github.com/microsoft/GSL")
  4. set_description("Guidelines Support Library")
  5. set_license("MIT")
  6. add_urls("https://github.com/microsoft/GSL/archive/refs/tags/$(version).tar.gz",
  7. "https://github.com/microsoft/GSL.git")
  8. add_versions("v4.2.0", "2c717545a073649126cb99ebd493fa2ae23120077968795d2c69cbab821e4ac6")
  9. add_versions("v4.1.0", "0a227fc9c8e0bf25115f401b9a46c2a68cd28f299d24ab195284eb3f1d7794bd")
  10. add_versions("v4.0.0", "f0e32cb10654fea91ad56bde89170d78cfbf4363ee0b01d8f097de2ba49f6ce9")
  11. add_versions("v3.1.0", "d3234d7f94cea4389e3ca70619b82e8fb4c2f33bb3a070799f1e18eef500a083")
  12. add_deps("cmake")
  13. on_install(function (package)
  14. local configs = {"-DGSL_TEST=OFF", "-DGSL_INSTALL=ON"}
  15. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
  16. import("package.tools.cmake").install(package, configs)
  17. end)
  18. on_test(function (package)
  19. assert(package:check_cxxsnippets({test = [[
  20. #include <vector>
  21. #include <type_traits>
  22. void test() {
  23. std::vector<int> v{1,2,3,4};
  24. gsl::span sp{v};
  25. static_assert(std::is_same<decltype(sp), gsl::span<int>>::value);
  26. }
  27. ]]}, {configs = {languages = "c++17"}, includes = "gsl/span"}))
  28. end)