53 lines
1.3 KiB
CMake
53 lines
1.3 KiB
CMake
#
|
|
# Try to find the FreeImage library and include path.
|
|
# Once done this will define
|
|
#
|
|
# FREEIMAGE_FOUND
|
|
# FREEIMAGE_INCLUDE_PATH
|
|
# FREEIMAGE_LIBRARY
|
|
#
|
|
|
|
IF (WIN32)
|
|
FIND_PATH( FREEIMAGE_INCLUDE_PATH FreeImage.h
|
|
${OPENJPEG_SOURCE_DIR}/libs/FreeImage
|
|
DOC "The directory where FreeImage.h resides")
|
|
FIND_LIBRARY( FREEIMAGE_LIBRARY
|
|
NAMES FreeImage freeimage freeimage.s
|
|
PATHS
|
|
${OPENJPEG_SOURCE_DIR}/libs/FreeImage
|
|
DOC "The FreeImage library")
|
|
ELSE (WIN32)
|
|
FIND_PATH( FREEIMAGE_INCLUDE_PATH FreeImage.h
|
|
/usr/include
|
|
/usr/local/include
|
|
/sw/include
|
|
/opt/local/include
|
|
DOC "The directory where FreeImage.h resides")
|
|
FIND_LIBRARY( FREEIMAGE_LIBRARY
|
|
NAMES FreeImage freeimage
|
|
PATHS
|
|
/usr/lib64
|
|
/usr/lib
|
|
/usr/local/lib64
|
|
/usr/local/lib
|
|
/sw/lib
|
|
/opt/local/lib
|
|
DOC "The FreeImage library")
|
|
ENDIF (WIN32)
|
|
|
|
SET(FREEIMAGE_LIBRARIES ${FREEIMAGE_LIBRARY})
|
|
|
|
IF (FREEIMAGE_INCLUDE_PATH AND FREEIMAGE_LIBRARY)
|
|
SET( FREEIMAGE_FOUND TRUE CACHE BOOL "Set to TRUE if GLEW is found, FALSE otherwise")
|
|
ELSE (FREEIMAGE_INCLUDE_PATH AND FREEIMAGE_LIBRARY)
|
|
SET( FREEIMAGE_FOUND FALSE CACHE BOOL "Set to TRUE if GLEW is found, FALSE otherwise")
|
|
ENDIF (FREEIMAGE_INCLUDE_PATH AND FREEIMAGE_LIBRARY)
|
|
|
|
MARK_AS_ADVANCED(
|
|
FREEIMAGE_FOUND
|
|
FREEIMAGE_LIBRARY
|
|
FREEIMAGE_LIBRARIES
|
|
FREEIMAGE_INCLUDE_PATH)
|
|
|
|
|