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.
53 lines
2.4 KiB
53 lines
2.4 KiB
4 years ago
|
package("amgcl")
|
||
|
|
||
|
set_homepage("https://github.com/ddemidov/amgcl/")
|
||
|
set_description("C++ library for solving large sparse linear systems with algebraic multigrid method")
|
||
|
set_license("MIT")
|
||
|
|
||
|
add_urls("https://github.com/ddemidov/amgcl/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/ddemidov/amgcl.git")
|
||
|
add_versions("1.4.0", "018b824396494c8958faa6337cebcaba48a2584d828f279eef0bbf9e05f900a7")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
add_deps("boost", {configs = {serialization = true, program_options = true}})
|
||
|
on_install("windows", "macosx", "linux", function (package)
|
||
|
io.replace("CMakeLists.txt", "unit_test_framework", "", {plain = true})
|
||
|
local configs = {"-DBoost_USE_STATIC_LIBS=ON"}
|
||
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
|
||
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
|
||
|
if package:is_plat("windows") then
|
||
|
table.insert(configs, "-DBoost_USE_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
|
||
|
else
|
||
|
table.insert(configs, "-DBoost_USE_STATIC_RUNTIME=OFF")
|
||
|
end
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
#include <vector>
|
||
|
#include <amgcl/backend/builtin.hpp>
|
||
|
#include <amgcl/adapter/crs_tuple.hpp>
|
||
|
#include <amgcl/make_solver.hpp>
|
||
|
#include <amgcl/amg.hpp>
|
||
|
#include <amgcl/coarsening/smoothed_aggregation.hpp>
|
||
|
#include <amgcl/relaxation/spai0.hpp>
|
||
|
#include <amgcl/solver/bicgstab.hpp>
|
||
|
void test() {
|
||
|
typedef amgcl::backend::builtin<double> Backend;
|
||
|
typedef amgcl::make_solver<
|
||
|
amgcl::amg<
|
||
|
Backend,
|
||
|
amgcl::coarsening::smoothed_aggregation,
|
||
|
amgcl::relaxation::spai0
|
||
|
>,
|
||
|
amgcl::solver::bicgstab<Backend>
|
||
|
> Solver;
|
||
|
ptrdiff_t rows, cols;
|
||
|
std::vector<int> ptr, col;
|
||
|
std::vector<double> val;
|
||
|
Solver solve(std::tie(rows, ptr, col, val));
|
||
|
}
|
||
|
]]}, {configs = {languages = "c++17"}}))
|
||
|
end)
|