From bf166344f672892d4487e57f286faaa092a54e52 Mon Sep 17 00:00:00 2001 From: Manuel Bentele Date: Tue, 27 Oct 2020 15:04:48 +0100 Subject: Do not print verbose CMake messages in unsupported CMake versions --- cmake/FindLibncurses.cmake | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'cmake/FindLibncurses.cmake') diff --git a/cmake/FindLibncurses.cmake b/cmake/FindLibncurses.cmake index 2589ff0..57234a1 100644 --- a/cmake/FindLibncurses.cmake +++ b/cmake/FindLibncurses.cmake @@ -47,8 +47,10 @@ if(Libncurses_FOUND) endif(Libncurses_FOUND) # print found information -message(VERBOSE "Libncurses_FOUND: ${Libncurses_FOUND}") -message(VERBOSE "Libncurses_VERSION: ${Libncurses_VERSION}") -message(VERBOSE "Libncurses_INCLUDE_DIRS: ${Libncurses_INCLUDE_DIRS}") -message(VERBOSE "Libncurses_COMPILE_OPTIONS: ${Libncurses_COMPILE_OPTIONS}") -message(VERBOSE "Libncurses_LIBRARIES: ${Libncurses_LIBRARIES}") +if(${CMAKE_VERSION} VERSION_GREATER "3.15.0") + message(VERBOSE "Libncurses_FOUND: ${Libncurses_FOUND}") + message(VERBOSE "Libncurses_VERSION: ${Libncurses_VERSION}") + message(VERBOSE "Libncurses_INCLUDE_DIRS: ${Libncurses_INCLUDE_DIRS}") + message(VERBOSE "Libncurses_COMPILE_OPTIONS: ${Libncurses_COMPILE_OPTIONS}") + message(VERBOSE "Libncurses_LIBRARIES: ${Libncurses_LIBRARIES}") +endif(${CMAKE_VERSION} VERSION_GREATER "3.15.0") -- cgit v1.2.3-55-g7522