Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
improve error message
authorMartin Quinson <martin.quinson@loria.fr>
Fri, 17 Nov 2017 23:45:51 +0000 (00:45 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Fri, 17 Nov 2017 23:45:54 +0000 (00:45 +0100)
I got trolled by the Red Hat engineers @SC17 because of that stupid mistake :)

CMakeLists.txt

index 7b93105..58b548b 100644 (file)
@@ -40,7 +40,7 @@ if(COMPILER_SUPPORTS_CXX11)
 else() 
   message(FATAL_ERROR 
           "The compiler ${CMAKE_CXX_COMPILER} (v${CMAKE_CXX_COMPILER_VERSION}) has no C++11 support. "
-           "Please use a decent C++ compiler.")
+          "Please install a decent C++ compiler (remove CMakeCache.txt once it's installed).")
 endif()
 
 ### And we need C11 standard, too