https://github.com/Kitware/CMake
Raw File
Tip revision: 86d7c4d786e7c6a13a1c4fa61428d53068017d62 authored by Bill Hoffman on 12 January 2007, 14:53:54 UTC
ENH: break it again
Tip revision: 86d7c4d
FindCurses.cmake
# - Find the curses include file and library
#

FIND_PATH(CURSES_INCLUDE_PATH 
  curses.h
  /usr/local/include 
  /usr/include
)

FIND_LIBRARY(CURSES_LIBRARY 
  NAMES curses ncurses
  PATHS 
    /usr/local/lib 
    /usr/lib 
    /lib
)

FIND_LIBRARY(CURSES_EXTRA_LIBRARY 
  cur_colr
  PATHS 
    /usr/local/lib 
    /usr/lib 
    /lib
)

FIND_LIBRARY(FORM_LIBRARY 
  form
  PATHS 
    /usr/local/lib 
    /usr/lib 
    /lib
)

# Need to provide the *_LIBRARIES
SET(CURSES_LIBRARIES ${CURSES_LIBRARY})

IF(CURSES_EXTRA_LIBRARY)
  SET(CURSES_LIBRARIES ${CURSES_LIBRARIES} ${CURSES_EXTRA_LIBRARY})
ENDIF(CURSES_EXTRA_LIBRARY)

IF(FORM_LIBRARY)
  SET(CURSES_LIBRARIES ${CURSES_LIBRARIES} ${FORM_LIBRARY})
ENDIF(FORM_LIBRARY)

# Proper name is *_INCLUDE_DIR
SET(CURSES_INCLUDE_DIR ${CURSES_INCLUDE_PATH})

MARK_AS_ADVANCED(
  CURSES_INCLUDE_PATH
  CURSES_LIBRARY
  CURSES_EXTRA_LIBRARY
  FORM_LIBRARY
  CURSES_LIBRARIES
  CURSES_INCLUDE_DIR
  )

back to top