10000 Downgrade message to STATUS and do not declare C++11 as a requirement. · unittest-cpp/unittest-cpp@0b15459 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0b15459

Browse files
committed
Downgrade message to STATUS and do not declare C++11 as a requirement.
1 parent a2fe238 commit 0b15459

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if(${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC")
1717
if (MSVC14 OR MSVC12)
1818
# has the support we need
1919
else()
20-
message(WARNING "The MSVC compiler version does not support required C++11 features. Please use a different C++ compiler.")
20+
message(STATUS "The MSVC compiler version does not support UnitTest++ C++11 features.")
2121
endif()
2222
else()
2323
include(CheckCXXCompilerFlag)
@@ -28,7 +28,7 @@ else()
2828
elseif(COMPILER_SUPPORTS_CXX11)
2929
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
3030
else()
31-
message(WARNING "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
31+
message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support.")
3232
endif()
3333
endif()
3434

0 commit comments

Comments
 (0)
0