xmake.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package("highfive")
  2. set_kind("library", {headeronly = true})
  3. set_homepage("https://github.com/BlueBrain/HighFive")
  4. set_description("HighFive - Header-only C++ HDF5 interface")
  5. set_license("BSL-1.0")
  6. add_urls("https://github.com/BlueBrain/HighFive/archive/refs/tags/$(version).tar.gz",
  7. "https://github.com/BlueBrain/HighFive.git")
  8. add_versions("v2.9.0", "6301def8ceb9f4d7a595988612db288b448a3c0546f6c83417dab38c64994d7e")
  9. add_versions("v2.6.1", "b5002c1221cf1821e02fb2ab891b0160bac88b43f56655bd844a472106ca3397")
  10. add_versions("v2.3.1", "41728a1204bdfcdcef8cbc3ddffe5d744c5331434ce3dcef35614b831234fcd7")
  11. add_patches("v2.6.1", path.join(os.scriptdir(), "patches", "fix-find-hdf5.patch"), "6a37e12f1796394d7691b36561829bf220336ec42a736c103509ac93537a36c9")
  12. add_patches("v2.3.1", path.join(os.scriptdir(), "patches", "fix-find-hdf5.patch"), "6a37e12f1796394d7691b36561829bf220336ec42a736c103509ac93537a36c9")
  13. add_deps("cmake")
  14. add_deps("hdf5")
  15. on_install("windows", "macosx", "linux", function (package)
  16. if package:version():eq("2.9.0") then
  17. io.replace("CMake/HighFiveTargetDeps.cmake", "find_package(HDF5 REQUIRED)", "find_package(HDF5 REQUIRED HINTS ${HDF5_ROOT})", {plain = true})
  18. end
  19. local configs = {"-DHIGHFIVE_UNIT_TESTS=OFF",
  20. "-DHIGHFIVE_EXAMPLES=OFF",
  21. "-DHIGHFIVE_BUILD_DOCS=OFF",
  22. "-DHIGHFIVE_USE_BOOST=OFF"}
  23. local hdf5 = package:dep("hdf5")
  24. if hdf5 and not hdf5:is_system() then
  25. table.insert(configs, "-DHDF5_ROOT=" .. hdf5:installdir())
  26. end
  27. import("package.tools.cmake").install(package, configs)
  28. end)
  29. on_test(function (package)
  30. assert(package:check_cxxsnippets({test = [[
  31. #include <highfive/H5File.hpp>
  32. using namespace HighFive;
  33. void test() {
  34. File file("/tmp/new_file.h5", File::ReadWrite | File::Create | File::Truncate);
  35. std::vector<int> data(50, 1);
  36. DataSet dataset = file.createDataSet<int>("/dataset_one", DataSpace::From(data));
  37. dataset.write(data);
  38. }
  39. ]]}, {configs = {languages = "c++17"}}))
  40. end)