The open source OpenXR runtime
0
fork

Configure Feed

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

Revert "t/openxr: Use XRT_MODULE_IPC to decide if we do IPC build or not"

This resulted in "in process" builds actually defaulting to building
IPC clients without the server, breaking them for most users.

This reverts commit cc2fa1ea532aaeb838b9f41bf200e21b000e96af.

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2410>

authored by

Rylie Pavlik and committed by
Marge Bot
c7bfa78b 16a0876f

+2 -2
+1 -1
src/xrt/targets/openxr/CMakeLists.txt
··· 19 19 # Note: Order may matter in these lists! 20 20 target_link_libraries(${RUNTIME_TARGET} PUBLIC aux_vk aux_os aux_util aux_math) 21 21 22 - if(XRT_MODULE_IPC) 22 + if(XRT_FEATURE_SERVICE) 23 23 target_link_libraries(${RUNTIME_TARGET} PUBLIC st_oxr ipc_client comp_client) 24 24 else() 25 25 target_link_libraries(
+1 -1
src/xrt/targets/openxr/target.c
··· 11 11 #include "util/u_trace_marker.h" 12 12 13 13 14 - #ifdef XRT_MODULE_IPC 14 + #ifdef XRT_FEATURE_SERVICE 15 15 16 16 // Insert the on load constructor to setup trace marker. 17 17 U_TRACE_TARGET_SETUP(U_TRACE_WHICH_OPENXR)