10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2fe238 commit 0b15459Copy full SHA for 0b15459
CMakeLists.txt
@@ -17,7 +17,7 @@ if(${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC")
17
if (MSVC14 OR MSVC12)
18
# has the support we need
19
else()
20
- message(WARNING "The MSVC compiler version does not support required C++11 features. Please use a different C++ compiler.")
+ message(STATUS "The MSVC compiler version does not support UnitTest++ C++11 features.")
21
endif()
22
23
include(CheckCXXCompilerFlag)
@@ -28,7 +28,7 @@ else()
28
elseif(COMPILER_SUPPORTS_CXX11)
29
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
30
31
- message(WARNING "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
+ message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support.")
32
33
34
0 commit comments