mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-14 20:40:38 +08:00
a13185e0b9
* [openxr-loader] Add openxr C++ bindings * Bump version
55 lines
1.8 KiB
CMake
55 lines
1.8 KiB
CMake
if (VCPKG_TARGET_ARCHITECTURE MATCHES "^arm*")
|
|
message(FATAL_ERROR "OpenXR does not support arm")
|
|
endif()
|
|
|
|
if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
# Due to UWP restricting the usage of static CRT OpenXR cannot be built.
|
|
message(FATAL_ERROR "OpenXR does not support UWP")
|
|
endif()
|
|
|
|
include(vcpkg_common_functions)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO jherico/OpenXR-SDK
|
|
REF 4e618f467a40c25478a8dff5921c2ab57c06bec2
|
|
SHA512 428d5af7463fab1eb69b9f0d81f4d38c6f5f07540b018260e0afcba3944a8ec60d51ccab7317815997dfc4cff5c2545d7f855c9f1dd03dbd27d74a67046f5b08
|
|
HEAD_REF master
|
|
)
|
|
|
|
# Weird behavior inside the OpenXR loader. On Windows they force shared libraries to use static crt, and
|
|
# vice-versa. Might be better in future iterations to patch the CMakeLists.txt for OpenXR
|
|
if (NOT VCPKG_CMAKE_SYSTEM_NAME OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
set(DYNAMIC_LOADER OFF)
|
|
set(VCPKG_CRT_LINKAGE dynamic)
|
|
else()
|
|
set(DYNAMIC_LOADER ON)
|
|
set(VCPKG_CRT_LINKAGE static)
|
|
endif()
|
|
endif()
|
|
|
|
vcpkg_find_acquire_program(PYTHON3)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DBUILD_API_LAYERS=OFF
|
|
-DBUILD_TESTS=OFF
|
|
-DBUILD_CONFORMANCE_TESTS=OFF
|
|
-DDYNAMIC_LOADER=${DYNAMIC_LOADER}
|
|
-DPYTHON_EXECUTABLE=${PYTHON3}
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
|
# No CMake files are contained in /share only docs
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/share)
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/openxr-loader RENAME copyright)
|
|
|
|
vcpkg_copy_pdbs()
|