The open source OpenXR runtime
0
fork

Configure Feed

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

cmake: Fix service build with -DXRT_BUILD_DRIVER_QWERTY=OFF

authored by

Christoph Haag and committed by
Jakob Bornecrantz
aac68971 b3181356

+8 -1
+8 -1
src/xrt/targets/service/CMakeLists.txt
··· 101 101 102 102 if(XRT_HAVE_SDL2) 103 103 target_link_libraries( 104 - monado-service PRIVATE st_gui xrt-external-imgui-sdl2 aux_ogl drv_qwerty_includes 104 + monado-service PRIVATE st_gui xrt-external-imgui-sdl2 aux_ogl 105 105 ) 106 + 107 + if(XRT_BUILD_DRIVER_QWERTY) 108 + target_link_libraries( 109 + monado-service PRIVATE drv_qwerty_includes 110 + ) 111 + endif() 106 112 endif() 113 +