1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# - Find NETPBM
# Find the native NETPBM includes and library
# This module defines
# NETPBM_INCLUDE_DIR, where to find jpeglib.h, etc.
# NETPBM_LIBRARIES, the libraries needed to use NETPBM.
# NETPBM_FOUND, If false, do not try to use NETPBM.
# also defined, but not for general use are
# NETPBM_LIBRARY, where to find the NETPBM library.
FIND_PATH(NETPBM_INCLUDE_DIR pam.h
${NETPBM_ROOT_DIR}/lib
/usr/local/include
/usr/local/include/netpbm
/usr/include
/usr/include/netpbm
)
SET(NETPBM_NAMES ${NETPBM_NAMES} netpbm)
FIND_LIBRARY(NETPBM_LIBRARY
NAMES ${NETPBM_NAMES}
PATHS /usr/lib /usr/local/lib
)
IF (NETPBM_LIBRARY AND NETPBM_INCLUDE_DIR)
SET(NETPBM_LIBRARIES ${NETPBM_LIBRARY})
SET(NETPBM_FOUND "YES")
ELSE (NETPBM_LIBRARY AND NETPBM_INCLUDE_DIR)
SET(NETPBM_FOUND "NO")
ENDIF (NETPBM_LIBRARY AND NETPBM_INCLUDE_DIR)
IF (NETPBM_FOUND)
IF (NOT NETPBM_FIND_QUIETLY)
MESSAGE(STATUS "Found NETPBM: ${NETPBM_LIBRARIES}")
ENDIF (NOT NETPBM_FIND_QUIETLY)
ELSE (NETPBM_FOUND)
IF (NETPBM_FIND_REQUIRED)
MESSAGE(FATAL_ERROR "Could not find NETPBM library")
ENDIF (NETPBM_FIND_REQUIRED)
ENDIF (NETPBM_FOUND)
# Deprecated declarations.
SET (NATIVE_NETPBM_INCLUDE_PATH ${NETPBM_INCLUDE_DIR} )
GET_FILENAME_COMPONENT (NATIVE_NETPBM_LIB_PATH ${NETPBM_LIBRARY} PATH)
MARK_AS_ADVANCED(
NETPBM_LIBRARY
NETPBM_INCLUDE_DIR
)
|