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/FindLibcap.cmake | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'cmake/FindLibcap.cmake') diff --git a/cmake/FindLibcap.cmake b/cmake/FindLibcap.cmake index 8529426..b575c16 100644 --- a/cmake/FindLibcap.cmake +++ b/cmake/FindLibcap.cmake @@ -42,8 +42,10 @@ if(Libcap_FOUND) endif(Libcap_FOUND) # print found information -message(VERBOSE "Libcap_FOUND: ${Libcap_FOUND}") -message(VERBOSE "Libcap_VERSION: ${Libcap_VERSION}") -message(VERBOSE "Libcap_INCLUDE_DIRS: ${Libcap_INCLUDE_DIRS}") -message(VERBOSE "Libcap_COMPILE_OPTIONS: ${Libcap_COMPILE_OPTIONS}") -message(VERBOSE "Libcap_LIBRARIES: ${Libcap_LIBRARIES}") +if(${CMAKE_VERSION} VERSION_GREATER "3.15.0") + message(VERBOSE "Libcap_FOUND: ${Libcap_FOUND}") + message(VERBOSE "Libcap_VERSION: ${Libcap_VERSION}") + message(VERBOSE "Libcap_INCLUDE_DIRS: ${Libcap_INCLUDE_DIRS}") + message(VERBOSE "Libcap_COMPILE_OPTIONS: ${Libcap_COMPILE_OPTIONS}") + message(VERBOSE "Libcap_LIBRARIES: ${Libcap_LIBRARIES}") +endif(${CMAKE_VERSION} VERSION_GREATER "3.15.0") -- cgit v1.2.3-55-g7522