From ad1155f15219867ec1dc74f9b758fd3764c17717 Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Mon, 1 May 2023 20:03:20 +0100 Subject: [PATCH] cmake: Use correct message type for OpenVR messages --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index becc1851e..3e6aefd7a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -194,10 +194,10 @@ endforeach() find_library(OPENVR_LIBRARIES NAMES openvr_api) if(OPENVR_LIBRARIES) set(OPENVR_FOUND on) - message("Found OpenVR: " ${OPENVR_LIBRARIES}) + message(STATUS "Found OpenVR: " ${OPENVR_LIBRARIES}) else() set(OPENVR_FOUND off) - message("OpenVR not found") + message(STATUS "OpenVR not found") endif() # ILLIXR