File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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} " )
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ add_subdirectory( dbus )
4343add_subdirectory ( asservice )
4444
4545if ( 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 )
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ include(CheckStructHasMember)
9999check_struct_has_member ("struct mgmt_ltk_info" central "../include/bluetooth/bluetooth.h;../include/bluetooth/mgmt.h" NO_INCLUSIVE_LANGUAGE LANGUAGE C )
100100
101101if (${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 )
104104endif ()
105105
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ set(BLUEZ_INCLUDE_DIRS)
4343foreach (_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 ()
4949endforeach ()
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ include(CheckStructHasMember)
8282check_struct_has_member ("struct mgmt_ltk_info" central "../include/bluetooth/bluetooth.h;../include/bluetooth/mgmt.h" NO_INCLUSIVE_LANGUAGE LANGUAGE C )
8383
8484if (${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 )
8787endif ()
8888
You can’t perform that action at this time.
0 commit comments