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.
26 lines
960 B
26 lines
960 B
1 year ago
|
package("samurai")
|
||
|
set_kind("library", {headeronly = true})
|
||
|
set_homepage("https://hpc-math-samurai.readthedocs.io")
|
||
|
set_description("Intervals coupled with algebra of set to handle adaptive mesh refinement and operators on it.")
|
||
|
set_license("BSD-3-Clause")
|
||
|
|
||
|
add_urls("https://github.com/hpc-maths/samurai/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/hpc-maths/samurai.git")
|
||
|
|
||
|
add_versions("v0.6.0", "bab96adac8e1553b79678a22de2248bec67c7c205b5fd35e9e1aaccaca41286e")
|
||
|
|
||
|
add_deps("xtensor", "highfive", "pugixml", "fmt")
|
||
|
|
||
|
on_install("windows", "linux", "macosx", function (package)
|
||
|
os.cp("include", package:installdir())
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
#include <samurai/cell_list.hpp>
|
||
|
void test() {
|
||
|
samurai::CellList<2> cl;
|
||
|
}
|
||
|
]]}, {configs = {languages = "c++17"}}))
|
||
|
end)
|