You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
507 B
20 lines
507 B
FIND_PATH(GMP_INCLUDE_DIR
|
|
gmp.h )
|
|
|
|
FIND_LIBRARY(GMP_LIBRARIES
|
|
NAMES gmp
|
|
HINTS /usr/local/lib )
|
|
|
|
IF (GMP_INCLUDE_DIR AND GMP_LIBRARIES)
|
|
SET(GMP_FOUND TRUE)
|
|
ENDIF (GMP_INCLUDE_DIR AND GMP_LIBRARIES)
|
|
|
|
IF (GMP_FOUND)
|
|
IF (NOT GMP_FIND_QUIETLY)
|
|
MESSAGE(STATUS "Found GMP: ${GMP_LIBRARIES}")
|
|
ENDIF (NOT GMP_FIND_QUIETLY)
|
|
ELSE (GMP_FOUND)
|
|
IF (GMP_FIND_REQUIRED)
|
|
MESSAGE(FATAL_ERROR "Could not find GMP")
|
|
ENDIF (GMP_FIND_REQUIRED)
|
|
ENDIF (GMP_FOUND)
|