From f3e63ec20f5b85b60d42085619a2ca176ea99517 Mon Sep 17 00:00:00 2001 From: Matteo Cypriani Date: Fri, 25 Jul 2014 15:22:59 -0400 Subject: [PATCH] CMake: precise "g++" in error message --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 00a7a4f..e92d15f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -179,7 +179,7 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL GNU) # Are we using GCC? ${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS ${POSITIONER_MIN_GCC_VERSION}) # GCC's version is too low message(WARNING - "OwlPS Positioner requires GCC >= ${POSITIONER_MIN_GCC_VERSION}") + "OwlPS Positioner requires GCC (g++) >= ${POSITIONER_MIN_GCC_VERSION}") else() # GCC's version is OK or we couldn'd get it add_subdirectory(owlps-positioner)