From 8f7180660f54564fc126bc1a5af279b1e02f1d31 Mon Sep 17 00:00:00 2001 From: Olivier Parcollet Date: Thu, 9 Jan 2014 19:27:55 +0100 Subject: [PATCH] Put back the check of compiler version commented for unknown reasons... Probably a mistake .... --- cmake/FindCompilerCheck.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindCompilerCheck.cmake b/cmake/FindCompilerCheck.cmake index 9f2d6432..0c514d15 100644 --- a/cmake/FindCompilerCheck.cmake +++ b/cmake/FindCompilerCheck.cmake @@ -72,7 +72,7 @@ MESSAGE( STATUS "Compiler is ${compiler_name} with version ${compiler_version}") # Check version if(compiler_version VERSION_LESS ${compiler_version_min} ) set(line_of_star "\n************************** FATAL ERROR ************************************\n") - # MESSAGE( FATAL_ERROR "${line_of_star}You are using the ${compiler_name} compiler but your compiler is too old :\n TRIQS requires version >= ${compiler_version_min} while you have ${compiler_version}\n ${line_of_star}") + MESSAGE( FATAL_ERROR "${line_of_star}You are using the ${compiler_name} compiler but your compiler is too old :\n TRIQS requires version >= ${compiler_version_min} while you have ${compiler_version}\n ${line_of_star}") endif(compiler_version VERSION_LESS ${compiler_version_min} ) # Now add some definitions ...