xmake.lua 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package("snappy")
  2. set_homepage("https://github.com/google/snappy")
  3. set_description("A fast compressor/decompressor")
  4. set_urls("https://github.com/google/snappy/archive/$(version).tar.gz",
  5. "https://github.com/google/snappy.git")
  6. add_versions("1.1.8", "16b677f07832a612b0836178db7f374e414f94657c138e6993cbfc5dcc58651f")
  7. add_versions("1.1.9", "75c1fbb3d618dd3a0483bff0e26d0a92b495bbe5059c8b4f1c962b478b6e06e7")
  8. add_versions("1.1.10", "49d831bffcc5f3d01482340fe5af59852ca2fe76c3e05df0e67203ebbe0f1d90")
  9. add_patches("1.1.9", "patches/1.1.9/inline.patch", "ed6b247d19486ab3f08f268269133193d7cdadd779523c5e69b5e653f82d535b")
  10. add_patches("1.1.10", "patches/1.1.10/cmake.patch", "d4883111dcfab81ea35ac1e4e157e55105cec02a0ba804458405be25cbf7b6bb")
  11. add_deps("cmake")
  12. add_configs("avx", {description = "Use the AVX instruction set", default = false, type = "boolean"})
  13. add_configs("avx2", {description = "Use the AVX2 instruction set", default = false, type = "boolean"})
  14. add_configs("bmi2", {description = "Use the BMI2 instruction set", default = false, type = "boolean"})
  15. on_install(function (package)
  16. io.replace("CMakeLists.txt", "-Werror", "", {plain = true})
  17. if package:version():eq("1.1.10") then
  18. io.replace("snappy.cc", "(op + deferred_length) < op_limit_min_slop);", "static_cast<ptrdiff_t>(op + deferred_length) < op_limit_min_slop);", {plain = true})
  19. end
  20. local configs = {"-DSNAPPY_BUILD_TESTS=OFF", "-DSNAPPY_BUILD_BENCHMARKS=OFF"}
  21. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
  22. table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  23. table.insert(configs, "-DSNAPPY_REQUIRE_AVX=" .. (package:config("avx") and "ON" or "OFF"))
  24. table.insert(configs, "-DSNAPPY_REQUIRE_AVX2=" .. (package:config("avx2") and "ON" or "OFF"))
  25. table.insert(configs, "-DSNAPPY_HAVE_BMI2=" .. (package:config("bmi2") and "ON" or "OFF"))
  26. if package:is_plat("windows") then
  27. table.insert(configs, "-DCMAKE_COMPILE_PDB_OUTPUT_DIRECTORY=''")
  28. end
  29. import("package.tools.cmake").install(package, configs)
  30. end)
  31. on_test(function (package)
  32. assert(package:check_cxxsnippets({test = [[
  33. void test(int args, char** argv) {
  34. snappy::Compress(nullptr, nullptr);
  35. }
  36. ]]}, {configs = {languages = "c++11"}, includes = "snappy.h"}))
  37. end)