package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
3 years ago
|
package("highfive")
|
||
|
set_kind("library", {headeronly = true})
|
||
|
set_homepage("https://github.com/BlueBrain/HighFive")
|
||
|
set_description("HighFive - Header-only C++ HDF5 interface")
|
||
|
|
||
|
add_urls("https://github.com/BlueBrain/HighFive/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/BlueBrain/HighFive.git")
|
||
|
|
||
|
add_versions("v2.3.1", "41728a1204bdfcdcef8cbc3ddffe5d744c5331434ce3dcef35614b831234fcd7")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
add_deps("hdf5")
|
||
|
|
||
|
on_install("windows", "macosx", "linux", function (package)
|
||
|
local configs = {"-DHIGHFIVE_UNIT_TESTS=OFF",
|
||
|
"-DHIGHFIVE_EXAMPLES=OFF",
|
||
|
"-DHIGHFIVE_BUILD_DOCS=OFF",
|
||
|
"-DHIGHFIVE_USE_BOOST=OFF"}
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
#include <highfive/H5File.hpp>
|
||
|
using namespace HighFive;
|
||
|
void test() {
|
||
|
File file("/tmp/new_file.h5", File::ReadWrite | File::Create | File::Truncate);
|
||
|
std::vector<int> data(50, 1);
|
||
|
DataSet dataset = file.createDataSet<int>("/dataset_one", DataSpace::From(data));
|
||
|
dataset.write(data);
|
||
|
}
|
||
|
]]}, {configs = {languages = "c++17"}}))
|
||
|
end)
|