SabrehavenServer/cmake/FindGMP.cmake
2019-01-16 17:16:38 -05:00

15 lines
433 B
CMake

# Locate GMP library
# This module defines
# GMP_FOUND
# GMP_INCLUDE_DIR
# GMP_LIBRARIES
find_path(GMP_INCLUDE_DIR NAMES gmp.h)
find_library(GMP_LIBRARIES NAMES gmp libgmp)
find_library(GMPXX_LIBRARIES NAMES gmpxx libgmpxx)
include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GMP DEFAULT_MSG GMP_INCLUDE_DIR GMP_LIBRARIES GMPXX_LIBRARIES)
mark_as_advanced(GMP_INCLUDE_DIR GMP_LIBRARIES GMPXX_LIBRARIES)