CMake/Modules/FindCurses.cmake

21 lines
345 B
CMake
Raw Normal View History

2001-11-05 02:05:21 +03:00
#
# Find the curses include file and library
#
FIND_PATH(CURSES_INCLUDE_PATH curses.h
2001-11-05 21:24:44 +03:00
/usr/local/include /usr/include
2001-11-05 02:05:21 +03:00
)
FIND_LIBRARY(CURSES_LIBRARY curses
2001-12-12 20:05:20 +03:00
PATHS /usr/local/lib /usr/lib /lib
2001-11-05 21:24:44 +03:00
)
FIND_LIBRARY(CURSES_EXTRA_LIBRARY cur_colr
2001-12-12 20:05:20 +03:00
PATHS /usr/local/lib /usr/lib /lib
2001-11-05 02:05:21 +03:00
)
FIND_LIBRARY(FORM_LIBRARY form
2001-12-12 20:05:20 +03:00
PATHS /usr/local/lib /usr/lib /lib
2001-11-05 02:05:21 +03:00
)
2001-11-05 21:24:44 +03:00