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.
44 lines
1.8 KiB
44 lines
1.8 KiB
package("h5cpp") |
|
set_homepage("https://ess-dmsc.github.io/h5cpp/") |
|
set_description("C++ wrapper for the HDF5 C-library") |
|
set_license("LGPL-2.1") |
|
|
|
add_urls("https://github.com/ess-dmsc/h5cpp/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/ess-dmsc/h5cpp.git") |
|
|
|
add_versions("v0.6.0", "72b459c92670628d730b3386fe6f4ac61218885afa904f234a181c2022a9f56f") |
|
add_versions("v0.5.1", "8fcab57ffbc2d799fe315875cd8fcf67e8b059cccc441ea45a001c03f6a9fd25") |
|
|
|
add_patches(">=0.5.1", path.join(os.scriptdir(), "patches", "fix-find-hdf5.patch"), "25f26ec6994d387571d7c068ba0405a34db45480a9c17fe3ea6402042e7de87c") |
|
|
|
add_deps("cmake") |
|
add_deps("zlib") |
|
|
|
on_load(function (package) |
|
package:add("deps", "hdf5", { configs = {shared = package:config("shared")} }) |
|
end) |
|
|
|
on_install("windows", "macosx", "linux", function (package) |
|
os.rm("cmake/FindHDF5.cmake") |
|
local configs = { |
|
"-DH5CPP_WITH_BOOST=OFF", |
|
"-DH5CPP_CONAN=DISABLE", |
|
"-DH5CPP_DISABLE_TESTS=ON", |
|
"-DH5CPP_BUILD_DOCS=OFF" |
|
} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DH5CPP_BUILD_SHARED=" .. (package:config("shared") and "ON" or "OFF")) |
|
if is_plat("windows") and package:config("shared") then |
|
package:add("defines", "H5_BUILT_AS_DYNAMIC_LIB") |
|
end |
|
import("package.tools.cmake").install(package, configs, {packagedeps = {"hdf5"}}) |
|
package:addenv("PATH", package:installdir("bin")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
void test() { |
|
auto type = hdf5::datatype::TypeTrait<int>::create(); |
|
} |
|
]]}, {configs = {languages = "c++17"}, includes = {"h5cpp/hdf5.hpp"}})) |
|
end)
|
|
|