xmake.lua 1001 B

12345678910111213141516171819202122232425
  1. package("maddy")
  2. set_kind("library", {headeronly = true})
  3. set_homepage("https://github.com/progsource/maddy")
  4. set_description("C++ Markdown to HTML header-only parser library")
  5. set_license("MIT")
  6. add_urls("https://github.com/progsource/maddy/archive/refs/tags/$(version).tar.gz",
  7. "https://github.com/progsource/maddy.git")
  8. add_versions("1.5.0", "192f6e2d689da0b53c2654d4b46f14d55d883737368ac7f10dd94696b662eec6")
  9. add_versions("1.3.0", "561681f8c8d2b998c153cda734107a0bc1dea4bb0df69fd813922da63fa9f3e7")
  10. add_versions("1.2.1", "b6058bce7ca32506969633ee7a4042e75b07464489f1c44be00913543cd687ef")
  11. on_install(function (package)
  12. os.cp("include", package:installdir())
  13. end)
  14. on_test(function (package)
  15. assert(package:check_cxxsnippets({test = [[
  16. #include <maddy/parser.h>
  17. void test() {
  18. auto var = maddy::ParserConfig();
  19. }
  20. ]]}, {configs = {languages = "c++14"}}))
  21. end)