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.
31 lines
1.2 KiB
31 lines
1.2 KiB
package("ode") |
|
|
|
set_homepage("http://ode.org/") |
|
set_description("ODE is an open source, high performance library for simulating rigid body dynamics.") |
|
set_license("BSD-3-Clause") |
|
|
|
add_urls("https://bitbucket.org/odedevs/ode/get/$(version).zip") |
|
add_versions("0.16.2", "000a5cdd0a81811cade2b0409ec06911a95e3c4c0d72a4cce3af6131115d0350") |
|
|
|
add_configs("libccd", {description = "Build with libccd.", default = false, type = "boolean"}) |
|
|
|
add_deps("cmake") |
|
if is_plat("windows") then |
|
add_syslinks("user32") |
|
elseif is_plat("linux") then |
|
add_syslinks("pthread") |
|
end |
|
|
|
on_install("windows", "macosx", "linux", function (package) |
|
local configs = {"-DODE_WITH_DEMOS=OFF", "-DODE_WITH_TESTS=OFF"} |
|
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:config("libccd") then |
|
table.insert(configs, "-DODE_WITH_LIBCCD=ON") |
|
end |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("dInitODE", {includes = "ode/odeinit.h"})) |
|
end)
|
|
|