mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 15:18:26 -05:00
Adding curses support.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#
|
||||
# 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
|
||||
)
|
||||
Reference in New Issue
Block a user