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.
47 lines
2.0 KiB
47 lines
2.0 KiB
3 years ago
|
package("gmsh")
|
||
|
|
||
|
set_homepage("http://gmsh.info/")
|
||
|
set_description("Gmsh is an open source 3D finite element mesh generator with a built-in CAD engine and post-processor.")
|
||
|
set_license("GPL-2.0")
|
||
|
|
||
|
add_urls("http://gmsh.info/src/gmsh-$(version)-source.tgz")
|
||
|
add_versions("4.8.4", "760dbdc072eaa3c82d066c5ba3b06eacdd3304eb2a97373fe4ada9509f0b6ace")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
if is_plat("windows") then
|
||
|
add_syslinks("shell32", "ws2_32", "winmm")
|
||
|
end
|
||
|
on_load("windows", function (package)
|
||
|
if package:config("shared") then
|
||
|
package:add("defines", "GMSH_DLL")
|
||
|
end
|
||
|
end)
|
||
|
|
||
|
on_install("windows", "macosx", "linux", function (package)
|
||
|
local configs = {"-DENABLE_TESTS=OFF", "-DENABLE_GMP=OFF"}
|
||
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
|
||
|
table.insert(configs, "-DENABLE_BUILD_LIB=" .. (package:config("shared") and "OFF" or "ON"))
|
||
|
table.insert(configs, "-DENABLE_BUILD_SHARED=" .. (package:config("shared") and "ON" or "OFF"))
|
||
|
table.insert(configs, "-DENABLE_BUILD_DYNAMIC=" .. (package:config("shared") and "ON" or "OFF"))
|
||
|
if package:is_plat("windows") then
|
||
|
table.insert(configs, "-DENABLE_MSVC_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
|
||
|
end
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
if package:is_plat("windows") and package:config("shared") then
|
||
|
os.mv(path.join(package:installdir("lib"), "gmsh.dll"), package:installdir("bin"))
|
||
|
end
|
||
|
package:addenv("PATH", "bin")
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
os.vrun("gmsh -version")
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
void test() {
|
||
|
gmsh::initialize();
|
||
|
gmsh::model::add("square");
|
||
|
int square = gmsh::model::occ::addRectangle(0, 0, 0, 1, 1);
|
||
|
gmsh::model::occ::synchronize();
|
||
|
}
|
||
|
]]}, {configs = {languages = "c++11"}, includes = "gmsh.h"}))
|
||
|
end)
|