2019-03-18 05:52:32 +00:00
|
|
|
# Copyright 2019, Collabora, Ltd.
|
|
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
|
|
|
|
######
|
|
|
|
# Create a loadable OpenXR driver.
|
|
|
|
|
|
|
|
set(RUNTIME_BARE_SUFFIX monado)
|
|
|
|
set(RUNTIME_SUFFIX _${RUNTIME_BARE_SUFFIX})
|
|
|
|
|
|
|
|
set(RUNTIME_TARGET ${RUNTIME_PREFIX}openxr${RUNTIME_SUFFIX} CACHE INTERNAL "" FORCE)
|
|
|
|
|
2019-08-16 14:53:39 +00:00
|
|
|
# OpenXR 1.0
|
|
|
|
set(XR_API_MAJOR "1")
|
2019-03-18 05:52:32 +00:00
|
|
|
|
|
|
|
set(SOURCE_FILES
|
|
|
|
target.c
|
2019-10-10 14:36:05 +00:00
|
|
|
oxr_sdl2_hack.c
|
2019-03-18 05:52:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# depends on above generated files
|
2020-03-31 16:25:31 +00:00
|
|
|
add_library(${RUNTIME_TARGET} MODULE
|
2019-03-18 05:52:32 +00:00
|
|
|
${MANIFEST_DEV_PATH}
|
|
|
|
${MANIFEST_PATH}
|
|
|
|
${SOURCE_FILES}
|
|
|
|
)
|
|
|
|
|
2020-03-04 15:54:47 +00:00
|
|
|
# Note: Order matters in this list!
|
2019-10-10 14:36:05 +00:00
|
|
|
target_link_libraries(${RUNTIME_TARGET} PUBLIC
|
2020-03-03 23:24:39 +00:00
|
|
|
aux_vk
|
|
|
|
aux_os
|
|
|
|
aux_ogl
|
|
|
|
aux_util
|
|
|
|
aux_math
|
|
|
|
st_oxr
|
|
|
|
st_gui
|
|
|
|
st_prober
|
2020-04-11 10:09:24 +00:00
|
|
|
target_lists
|
|
|
|
target_instance
|
2020-03-04 15:54:47 +00:00
|
|
|
comp_main
|
|
|
|
comp_client
|
2019-03-18 05:52:32 +00:00
|
|
|
)
|
|
|
|
|
2019-10-10 14:36:05 +00:00
|
|
|
if(BUILD_WITH_SDL2)
|
2020-03-03 23:24:39 +00:00
|
|
|
target_link_libraries(${RUNTIME_TARGET} PUBLIC imgui_impl_sdl)
|
2019-12-03 20:11:11 +00:00
|
|
|
endif()
|
2019-03-18 05:52:32 +00:00
|
|
|
|
2020-03-04 15:54:47 +00:00
|
|
|
if(NOT MSVC)
|
|
|
|
# Force the main "negotiate" symbol's inclusion
|
2020-03-04 15:55:16 +00:00
|
|
|
# and use a version script to ensure that's the only one we expose.
|
2020-03-04 15:54:47 +00:00
|
|
|
set_property(TARGET ${RUNTIME_TARGET}
|
|
|
|
APPEND_STRING
|
|
|
|
PROPERTY LINK_FLAGS
|
2020-03-04 15:55:16 +00:00
|
|
|
"-u xrNegotiateLoaderRuntimeInterface -Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/libopenxr.version")
|
2020-03-04 16:04:57 +00:00
|
|
|
# Re-link if the version script changes.
|
|
|
|
set_property(TARGET ${RUNTIME_TARGET}
|
|
|
|
APPEND
|
|
|
|
PROPERTY LINK_DEPENDS
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/libopenxr.version")
|
2020-03-04 15:54:47 +00:00
|
|
|
endif()
|
|
|
|
|
2020-03-03 23:24:39 +00:00
|
|
|
|
2019-06-18 19:59:06 +00:00
|
|
|
# Install the runtime itself
|
|
|
|
install(TARGETS ${RUNTIME_TARGET}
|
|
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
2019-10-10 14:36:05 +00:00
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
|
|
)
|
2019-06-18 20:05:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
# $LIBPATH is a generator expression that is evaluated after configure_file, so we have to use file(GENERATE) instead
|
|
|
|
|
|
|
|
###
|
|
|
|
# Generate runtime manifest with absolute path to runtime intended for development without installing
|
2019-06-18 20:05:20 +00:00
|
|
|
set(MANIFEST_INPUT ${CMAKE_CURRENT_SOURCE_DIR}/openxr_monado.in.json)
|
2020-03-31 16:25:31 +00:00
|
|
|
set(runtime_path $<TARGET_FILE:${RUNTIME_TARGET}>)
|
2019-06-18 20:05:58 +00:00
|
|
|
|
|
|
|
# Need this step because file(GENERATE) only evaluates generator expressions, and not what configure_file does.
|
|
|
|
configure_file(${MANIFEST_INPUT} ${CMAKE_CURRENT_BINARY_DIR}/intermediate_manifest.json)
|
|
|
|
file(GENERATE
|
|
|
|
OUTPUT "${CMAKE_BINARY_DIR}/${RUNTIME_TARGET}-dev.json"
|
|
|
|
INPUT ${CMAKE_CURRENT_BINARY_DIR}/intermediate_manifest.json)
|
|
|
|
|
2019-06-18 20:05:20 +00:00
|
|
|
###
|
|
|
|
# Prepare the installable manifest: will be generated completely at install time,
|
|
|
|
# by a script we generate now.
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
|
|
set(MANIFEST_RELATIVE_DIR share/openxr/${XR_API_MAJOR}/)
|
2019-06-14 20:57:34 +00:00
|
|
|
if(INSTALL_ACTIVE_RUNTIME)
|
|
|
|
configure_file(active_runtime.cmake ${CMAKE_CURRENT_BINARY_DIR}/active_runtime.cmake @ONLY)
|
|
|
|
install(SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/active_runtime.cmake)
|
|
|
|
endif()
|
2019-06-18 20:05:20 +00:00
|
|
|
elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
|
|
# TODO: install target on windows just needs to know where to install manifest
|
|
|
|
set(MANIFEST_RELATIVE_DIR)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# If we know where to install the manifest, we can set it up to be installed.
|
|
|
|
if(MANIFEST_RELATIVE_DIR)
|
2019-06-18 20:09:45 +00:00
|
|
|
set(RUNTIME_RELATIVE_DIR ${CMAKE_INSTALL_LIBDIR})
|
|
|
|
set(RUNTIME_FILENAME ${CMAKE_SHARED_MODULE_PREFIX}${RUNTIME_TARGET}${CMAKE_SHARED_MODULE_SUFFIX})
|
2019-06-18 20:05:20 +00:00
|
|
|
configure_file(make_manifest.cmake ${CMAKE_CURRENT_BINARY_DIR}/make_manifest.cmake @ONLY)
|
|
|
|
install(SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/make_manifest.cmake)
|
|
|
|
endif()
|