xmake.lua 935 B

1234567891011121314151617181920212223
  1. package("clove-unit")
  2. set_kind("library", {headeronly = true})
  3. set_homepage("https://github.com/fdefelici/clove-unit")
  4. set_description("Single-Header Unit Testing framework for C (interoperable with C++) with test autodiscovery feature")
  5. set_license("MIT")
  6. add_urls("https://github.com/fdefelici/clove-unit/archive/refs/tags/$(version).tar.gz",
  7. "https://github.com/fdefelici/clove-unit.git")
  8. add_versions("v2.4.5", "e4db72612adf00d7c7c9512cb9990768f5f3e62a72039929b78ba17d5a6f4308")
  9. add_versions("v2.4.4", "25e611e1d4286c73d9cce7bbc99f83e00629551602351fec1edcbb669243e047")
  10. on_install(function (package)
  11. os.vcp("clove-unit.h", package:installdir("include"))
  12. end)
  13. on_test(function (package)
  14. assert(package:check_csnippets({test = [[
  15. CLOVE_TEST(test) {
  16. CLOVE_IS_TRUE(1);
  17. }
  18. ]]}, {includes = "clove-unit.h"}))
  19. end)