summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-10-29 15:23:57 -0400
committerBrad King <brad.king@kitware.com>2014-10-29 15:23:57 -0400
commit1e48ea7ab80c0d90b4c7681aceb0cd0a56c7af49 (patch)
tree5bd35a830d1e0a5e82ab4f24ce657c1b2b934f5d
parent0c3ddf8b652311ec2a9447a9e6303691841628b4 (diff)
parentf11f957949786295f6cd9e2efc5a333fa905ccc7 (diff)
downloadcmake-1e48ea7ab80c0d90b4c7681aceb0cd0a56c7af49.tar.gz
Merge branch 'FindCurses-include-CheckLibraryExists' into release
-rw-r--r--Modules/FindCurses.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/FindCurses.cmake b/Modules/FindCurses.cmake
index 0184c39def..a21ca897ee 100644
--- a/Modules/FindCurses.cmake
+++ b/Modules/FindCurses.cmake
@@ -50,6 +50,8 @@
# (To distribute this file outside of CMake, substitute the full
# License text for the above reference.)
+include(${CMAKE_CURRENT_LIST_DIR}/CheckLibraryExists.cmake)
+
find_library(CURSES_CURSES_LIBRARY NAMES curses )
find_library(CURSES_NCURSES_LIBRARY NAMES ncurses )
@@ -81,7 +83,6 @@ endif()
# prefix as the library was found, if still not found, try curses.h with the
# default search paths.
if(CURSES_CURSES_LIBRARY AND CURSES_NEED_NCURSES)
- include(${CMAKE_CURRENT_LIST_DIR}/CheckLibraryExists.cmake)
include(${CMAKE_CURRENT_LIST_DIR}/CMakePushCheckState.cmake)
cmake_push_check_state()
set(CMAKE_REQUIRED_QUIET ${Curses_FIND_QUIETLY})