Skip to content

Commit 35191b0

Browse files
committed
fix: change default standard warning to a status
1 parent 06885b0 commit 35191b0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/StandardProjectSettings.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ if(NOT "${CMAKE_CXX_STANDARD}")
4343
set(CXX_LATEST_STANDARD 11)
4444
endif()
4545
message(
46-
WARNING
47-
"The default CMAKE_CXX_STANDARD used by external tools like clang-tidy and cppcheck is not set yet. Using the latest supported C++ standard that is ${CXX_LATEST_STANDARD}"
46+
STATUS
47+
"The default CMAKE_CXX_STANDARD used by external targets and tools is not set yet. Using the latest supported C++ standard that is ${CXX_LATEST_STANDARD}"
4848
)
4949
set(CMAKE_CXX_STANDARD ${CXX_LATEST_STANDARD})
5050
endif()

0 commit comments

Comments
 (0)