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.
28 lines
1.1 KiB
28 lines
1.1 KiB
package("pqp") |
|
|
|
set_homepage("http://gamma.cs.unc.edu/SSV/") |
|
set_description("A Proximity Query Package") |
|
|
|
set_urls("http://gamma.cs.unc.edu/software/downloads/SSV/pqp-$(version).tar.gz", |
|
"https://github.com/GammaUNC/PQP.git") |
|
|
|
add_versions("1.3", "00bdcb380206393349ed7ee9a773f894bf796059c66cec0d97c0a93649eb012f") |
|
add_patches("1.3", path.join(os.scriptdir(), "patches", "1.3", "fix.patch"), "9160f8bc35d23dd5a84af0891410fafa07b8fd9329389724627a68e96b4c270f") |
|
|
|
on_install(function (package) |
|
io.writefile("xmake.lua", [[ |
|
add_rules("mode.debug", "mode.release") |
|
target("pqp") |
|
set_kind("$(kind)") |
|
add_files("**/src/*.cpp") |
|
add_headerfiles("**/src/*.h") |
|
]]) |
|
local configs = {} |
|
configs.kind = package:config("shared") and "shared" or "static" |
|
import("package.tools.xmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cxxfuncs("PQP_Collide", {includes = "PQP.h"})) |
|
assert(package:has_cxxfuncs("TriDist", {includes = "TriDist.h"})) |
|
end)
|
|
|