The open source OpenXR runtime
0
fork

Configure Feed

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

cmake: Use correct message type for OpenVR messages

+2 -2
+2 -2
CMakeLists.txt
··· 194 194 find_library(OPENVR_LIBRARIES NAMES openvr_api) 195 195 if(OPENVR_LIBRARIES) 196 196 set(OPENVR_FOUND on) 197 - message("Found OpenVR: " ${OPENVR_LIBRARIES}) 197 + message(STATUS "Found OpenVR: " ${OPENVR_LIBRARIES}) 198 198 else() 199 199 set(OPENVR_FOUND off) 200 - message("OpenVR not found") 200 + message(STATUS "OpenVR not found") 201 201 endif() 202 202 203 203 # ILLIXR