summaryrefslogtreecommitdiffstats
path: root/cmake/FindLibncurses.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindLibncurses.cmake')
-rw-r--r--cmake/FindLibncurses.cmake12
1 files changed, 7 insertions, 5 deletions
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")