2007-01-09 02:39:15 +00:00
|
|
|
|
|
|
|
# CMake module to search for GEOS library
|
|
|
|
#
|
|
|
|
# If it's found it sets GEOS_FOUND to TRUE
|
|
|
|
# and following variables are set:
|
|
|
|
# GEOS_INCLUDE_DIR
|
|
|
|
# GEOS_LIBRARY
|
|
|
|
|
|
|
|
|
2008-03-10 16:08:43 +00:00
|
|
|
# Normally there is no need to specify /usr/... paths because
|
|
|
|
# cmake will look there automatically. However the NO_DEFAULT_PATH
|
|
|
|
# prevents this behaviour allowing you to use no standard file
|
|
|
|
# locations in preference over standard ones. Note in this case
|
|
|
|
# you then need to explicitly add /usr and /usr/local prefixes
|
|
|
|
# to the search list. This applies both to FIND_PATH and FIND_LIBRARY
|
2007-10-01 00:13:34 +00:00
|
|
|
FIND_PATH(GEOS_INCLUDE_DIR geos.h
|
2008-03-10 16:08:43 +00:00
|
|
|
"$ENV{LIB_DIR}/include"
|
2007-10-01 00:13:34 +00:00
|
|
|
/usr/local/include
|
|
|
|
/usr/include
|
2007-10-11 18:06:07 +00:00
|
|
|
#mingw
|
|
|
|
c:/msys/local/include
|
2008-03-10 16:08:43 +00:00
|
|
|
NO_DEFAULT_PATH
|
2007-10-01 00:13:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
FIND_LIBRARY(GEOS_LIBRARY NAMES geos PATHS
|
2008-03-10 16:08:43 +00:00
|
|
|
"$ENV{LIB_DIR}/lib"
|
2007-10-01 00:13:34 +00:00
|
|
|
/usr/local/lib
|
|
|
|
/usr/lib
|
2007-10-11 18:06:07 +00:00
|
|
|
#mingw
|
|
|
|
c:/msys/local/lib
|
2008-03-10 16:08:43 +00:00
|
|
|
NO_DEFAULT_PATH
|
2007-10-01 00:13:34 +00:00
|
|
|
)
|
2007-01-09 02:39:15 +00:00
|
|
|
|
|
|
|
IF (GEOS_INCLUDE_DIR AND GEOS_LIBRARY)
|
|
|
|
SET(GEOS_FOUND TRUE)
|
|
|
|
ENDIF (GEOS_INCLUDE_DIR AND GEOS_LIBRARY)
|
|
|
|
|
|
|
|
|
|
|
|
IF (GEOS_FOUND)
|
|
|
|
|
|
|
|
IF (NOT GEOS_FIND_QUIETLY)
|
|
|
|
MESSAGE(STATUS "Found GEOS: ${GEOS_LIBRARY}")
|
|
|
|
ENDIF (NOT GEOS_FIND_QUIETLY)
|
|
|
|
|
|
|
|
ELSE (GEOS_FOUND)
|
|
|
|
|
|
|
|
IF (GEOS_FIND_REQUIRED)
|
|
|
|
MESSAGE(FATAL_ERROR "Could not find GEOS")
|
|
|
|
ENDIF (GEOS_FIND_REQUIRED)
|
|
|
|
|
|
|
|
ENDIF (GEOS_FOUND)
|