From 0c901bd7e34df3db8da4ca3806aef3a6d70ae63e Mon Sep 17 00:00:00 2001 From: Thomas Timm Andersen Date: Tue, 20 Oct 2015 10:14:57 +0200 Subject: [PATCH] Included suggestion to update build-essential pkg if compiler doesn't support c++11 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 15fd2e9..cfd2a37 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -126,7 +126,7 @@ if(COMPILER_SUPPORTS_CXX11) elseif(COMPILER_SUPPORTS_CXX0X) set(CMAKE_CXX_FLAGS "-std=c++0x") else() - message(FATAL_ERROR "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.") + message(FATAL_ERROR "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler. Suggested solution: update the pkg build-essential ") endif() ## Specify additional locations of header files