CMake/Modules/FindCurses.cmake

17 lines
253 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
/usr/local/include
/usr/include
)
FIND_LIBRARY(CURSES_LIBRARY curses
PATHS /usr/lib /usr/local/lib
)
FIND_LIBRARY(FORM_LIBRARY form
PATHS /usr/lib /usr/local/lib
)