Skip to content

Commit 93a145f

Browse files
committed
Mark CMake status messages as STATUS
Otherwise they show up in e.g. ccmake or cmake-gui as error messages
1 parent b9b9259 commit 93a145f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ endif()
129129

130130
if(ENABLE_HDF5)
131131

132-
message ("${HDF5_COMPONENTS}")
132+
message (STATUS "${HDF5_COMPONENTS}")
133133
if (ENABLE_CXX)
134134
find_package ( HDF5 COMPONENTS CXX HL REQUIRED )
135135
else()

cmake_include/Utilities.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ function(find_module VAR )
187187
#if the user has not provided any configuration we have to do this manually
188188
if(PKG_CONFIG_FOUND AND MOD_NAME)
189189
#the easy way - we use package config
190-
message("pkg-config is searching for : ${MOD_NAME}")
190+
message(STATUS "pkg-config is searching for : ${MOD_NAME}")
191191
pkg_search_module(${VAR} ${MOD_NAME})
192192
endif()
193193

0 commit comments

Comments
 (0)