From 8b5ad667d90fa8dc69ef8b1849e3fe426d8a04eb Mon Sep 17 00:00:00 2001 From: worktycho Date: Sat, 6 Sep 2014 14:49:40 +0100 Subject: Improve error message --- SetFlags.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'SetFlags.cmake') diff --git a/SetFlags.cmake b/SetFlags.cmake index 7d845ebb7..cd1eaa3d6 100644 --- a/SetFlags.cmake +++ b/SetFlags.cmake @@ -223,8 +223,8 @@ macro(set_exe_flags) add_flags_cxx("-ffast-math") if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - if (CLANG_VERSION_STRING VERSION_LESS 3.0) - message(FATAL_ERROR "MCServer requires clang version 3.0 or higher") + if ("${CLANG_VERSION_STRING}" VERSION_LESS 3.0) + message(FATAL_ERROR "MCServer requires clang version 3.0 or higher, version is ${CLANG_VERSION_STRING}") endif() # clang does not provide the __extern_always_inline macro and a part of libm depends on this when using fast-math add_flags_cxx("-D__extern_always_inline=inline") -- cgit v1.2.3