Skip to content

Commit 266eb46

Browse files
cmake: be less talkative
1 parent 7e9ab52 commit 266eb46

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ if(ENABLE_STRICT_COMPILER_SETTINGS)
3131
set(CMAKE_STRICT_COMPILER_SETTINGS "-Weverything -Wextra -Wpedantic -Werror")
3232
set(CMAKE_STRICT_CXX_COMPILER_SETTINGS "${CMAKE_STRICT_COMPILER_SETTINGS} -Wnon-virtual-dtor")
3333
elseif(${CMAKE_COMPILER_IS_GNUCXX})
34-
message(STATUS "Compiling with GCC")
34+
message(VERBOSE "Compiling with GCC")
3535
set(CMAKE_STRICT_COMPILER_SETTINGS "-Wall -Wextra -Wpedantic -Werror")
3636
set(CMAKE_STRICT_CXX_COMPILER_SETTINGS "${CMAKE_STRICT_COMPILER_SETTINGS} -Wnon-virtual-dtor")
3737
elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
38-
message(STATUS "Compiling with MS Visual Studio")
38+
message(VERBOSE "Compiling with MS Visual Studio")
3939
set(CMAKE_STRICT_COMPILER_SETTINGS "/W4")
4040
else()
41-
message(STATUS "Compiler ${CMAKE_CXX_COMPILER_ID}")
41+
message(VERBOSE "Compiler ${CMAKE_CXX_COMPILER_ID}")
4242
endif()
4343
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_STRICT_CXX_COMPILER_SETTINGS}")
4444
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_STRICT_COMPILER_SETTINGS}")

Source/asconnector/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ add_subdirectory( dbus )
4343
add_subdirectory( asservice )
4444

4545
if ( ENABLE_BREAKPAD_MINIDUMP )
46-
message( STATUS "ENABLE_BREAKPAD_MINIDUMP is on" )
46+
message(VERBOSE "ENABLE_BREAKPAD_MINIDUMP is on" )
4747

4848
# Find the breakpad library
4949
find_package( breakpad REQUIRED )

Source/bluetooth/audio/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ include(CheckStructHasMember)
9999
check_struct_has_member("struct mgmt_ltk_info" central "../include/bluetooth/bluetooth.h;../include/bluetooth/mgmt.h" NO_INCLUSIVE_LANGUAGE LANGUAGE C)
100100

101101
if(${NO_INCLUSIVE_LANGUAGE})
102-
message(STATUS "Your version of bluez don't uses inclusive language anymore")
102+
message(VERBOSE "Your version of bluez don't uses inclusive language anymore")
103103
target_compile_definitions(${TARGET} PUBLIC NO_INCLUSIVE_LANGUAGE)
104104
endif()
105105

Source/bluetooth/cmake/FindBluez5UtilHeaders.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ set(BLUEZ_INCLUDE_DIRS)
4343
foreach(_header ${NEEDED_BLUEZ_HEADERS})
4444
find_path(_header_path bluetooth/${_header})
4545
if(_header_path)
46-
message(TRACE "Found ${_header} in ${_header_path}")
46+
message(VERBOSE "Found ${_header} in ${_header_path}")
4747
list(APPEND BLUEZ_INCLUDE_DIRS ${_header_path})
4848
endif()
4949
endforeach()

Source/bluetooth/gatt/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ include(CheckStructHasMember)
8282
check_struct_has_member("struct mgmt_ltk_info" central "../include/bluetooth/bluetooth.h;../include/bluetooth/mgmt.h" NO_INCLUSIVE_LANGUAGE LANGUAGE C)
8383

8484
if(${NO_INCLUSIVE_LANGUAGE})
85-
message(STATUS "Your version of bluez don't uses inclusive language anymore")
85+
message(VERBOSE "Your version of bluez don't uses inclusive language anymore")
8686
target_compile_definitions(${TARGET} PUBLIC NO_INCLUSIVE_LANGUAGE)
8787
endif()
8888

0 commit comments

Comments
 (0)