xmake.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132
  1. package("rapidfuzz")
  2. set_kind("library", {headeronly = true})
  3. set_homepage("https://rapidfuzz.github.io/rapidfuzz-cpp")
  4. set_description("Rapid fuzzy string matching in C++ using the Levenshtein Distance")
  5. set_license("MIT")
  6. add_urls("https://github.com/rapidfuzz/rapidfuzz-cpp/archive/refs/tags/$(version).tar.gz",
  7. "https://github.com/rapidfuzz/rapidfuzz-cpp.git")
  8. add_versions("v3.0.5", "e32936cc66333a12f659553b5fdd6d0c22257d32ac3b7a806ac9031db8dea5a1")
  9. add_versions("v3.0.4", "18d1c41575ceddd6308587da8befc98c85d3b5bc2179d418daffed6d46b8cb0a")
  10. add_versions("v3.0.2", "4fddce5c0368e78bd604c6b820e6be248d669754715e39b4a8a281bda4c06de1")
  11. add_deps("cmake")
  12. on_install(function (package)
  13. import("package.tools.cmake").install(package)
  14. end)
  15. on_test(function (package)
  16. assert(package:check_cxxsnippets({test = [[
  17. void test() {
  18. using rapidfuzz::fuzz::ratio;
  19. double score1 = rapidfuzz::fuzz::ratio("this is a test", "this is a test!");
  20. double score2 = rapidfuzz::fuzz::partial_ratio("this is a test", "this is a test!");
  21. double score3 = rapidfuzz::fuzz::ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear");
  22. double score4 = rapidfuzz::fuzz::token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear");
  23. double score5 = rapidfuzz::fuzz::token_sort_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear");
  24. double score6 = rapidfuzz::fuzz::token_set_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear");
  25. }
  26. ]]},{includes = "rapidfuzz/fuzz.hpp", configs = {languages = "c++17"}}))
  27. end)