xmake.lua 607 B

12345678910111213141516
  1. package("utf8.h")
  2. set_kind("library", {headeronly = true})
  3. set_homepage("https://github.com/sheredom/utf8.h")
  4. set_description("single header utf8 string functions for C and C++")
  5. add_urls("https://github.com/sheredom/utf8.h.git")
  6. add_versions("2022.07.04", "4e4d828174c35e4564c31a9e35580c299c69a063")
  7. add_versions("2025.01.03", "505f9bb638d023468d4f5db279ffbfe0b955949b")
  8. on_install(function (package)
  9. os.cp("*.h", package:installdir("include"))
  10. end)
  11. on_test(function (package)
  12. assert(package:has_cfuncs("utf8casecmp", {includes = "utf8.h"}))
  13. end)