From 3124974d702391b018f263509046cd81a6270d2b Mon Sep 17 00:00:00 2001 From: jriegel Date: Tue, 4 Sep 2012 18:13:42 +0200 Subject: [PATCH] Do not show status information as error in cmake configure --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 671b30cfd..fc7240bc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -77,10 +77,10 @@ SET(CMAKE_INSTALL_DOCDIR doc CACHE PATH "Output directory for documentation and SET(RESOURCEDIR "${CMAKE_INSTALL_DATADIR}") SET(DOCDIR "${CMAKE_INSTALL_DOCDIR}") -MESSAGE("prefix: ${CMAKE_INSTALL_PREFIX}") -MESSAGE("datadir: ${CMAKE_INSTALL_DATADIR}") -MESSAGE("docdir: ${CMAKE_INSTALL_DOCDIR}") -MESSAGE("includedir: ${CMAKE_INSTALL_INCLUDEDIR}") +MESSAGE( STATUS "prefix: ${CMAKE_INSTALL_PREFIX}") +MESSAGE(STATUS "datadir: ${CMAKE_INSTALL_DATADIR}") +MESSAGE(STATUS "docdir: ${CMAKE_INSTALL_DOCDIR}") +MESSAGE(STATUS "includedir: ${CMAKE_INSTALL_INCLUDEDIR}") # ============================================================================== # == Win32 is default behaviour use the LibPack copied in Source tree ==========