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.
38 lines
1.5 KiB
38 lines
1.5 KiB
package("openvr") |
|
|
|
set_homepage("https://www.steamvr.com/") |
|
set_description("OpenVR SDK") |
|
set_license("BSD-3-Clause") |
|
|
|
add_urls("https://github.com/ValveSoftware/openvr/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/ValveSoftware/openvr.git") |
|
add_versions("v2.5.1", "54f654fce001682d8ac608f544a6c41e03a672b005c1deca3579fa36480a537c") |
|
add_versions("v1.26.7", "e7391f1129db777b2754f5b017cfa356d7811a7bcaf57f09805b47c2e630a725") |
|
|
|
add_deps("cmake") |
|
if is_plat("windows") then |
|
add_syslinks("shell32") |
|
elseif is_plat("macosx") then |
|
add_frameworks("Foundation") |
|
end |
|
on_load("windows", function (package) |
|
if not package:config("shared") then |
|
package:add("defines", "OPENVR_BUILD_STATIC") |
|
end |
|
end) |
|
|
|
on_install("windows", "macosx", "linux", function (package) |
|
local configs = {"-DUSE_LIBCXX=OFF", "-DBUILD_UNIVERSAL=OFF"} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DBUILD_SHARED=" .. (package:config("shared") and "ON" or "OFF")) |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
void test() { |
|
vr::EVRInitError eError = vr::VRInitError_None; |
|
vr::IVRSystem *m_pHMD = vr::VR_Init(&eError, vr::VRApplication_Scene); |
|
} |
|
]]}, {configs = {languages = "c++11"}, includes = "openvr/openvr.h"})) |
|
end)
|
|
|