The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: Install more targets

+9 -2
+1
CMakeLists.txt
··· 20 20 list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") 21 21 include(CMakeDependentOption) 22 22 include(SPIR-V) 23 + include(GNUInstallDirs) 23 24 24 25 find_package(Eigen3 REQUIRED) 25 26 find_package(Vulkan REQUIRED)
+1
doc/changes/misc_features/mr.252.md
··· 1 + Enable the build system to install `monado-cli` and `monado-gui`.
+3
src/xrt/targets/cli/CMakeLists.txt
··· 31 31 target_lists 32 32 ) 33 33 34 + install(TARGETS cli 35 + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} 36 + )
+4
src/xrt/targets/gui/CMakeLists.txt
··· 31 31 imgui_impl_sdl 32 32 ) 33 33 target_include_directories(gui PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/..) 34 + 35 + install(TARGETS gui 36 + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} 37 + )
-2
src/xrt/targets/openxr/CMakeLists.txt
··· 53 53 endif() 54 54 55 55 56 - include(GNUInstallDirs) 57 - 58 56 # Install the runtime itself 59 57 install(TARGETS ${RUNTIME_TARGET} 60 58 LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}