forked from zeek/cmake
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Try to find the GNU Multiple Precision Arithmetic Library (GMP) | ||
# See http://gmplib.org/ | ||
|
||
if (GMP_INCLUDES AND GMP_LIBRARIES) | ||
set(GMP_FIND_QUIETLY TRUE) | ||
endif (GMP_INCLUDES AND GMP_LIBRARIES) | ||
|
||
find_path(GMP_INCLUDES | ||
NAMES | ||
gmp.h | ||
PATHS | ||
$ENV{GMPDIR} | ||
${INCLUDE_INSTALL_DIR} | ||
) | ||
|
||
find_library(GMP_LIBRARIES gmp PATHS $ENV{GMPDIR} ${LIB_INSTALL_DIR}) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(GMP DEFAULT_MSG | ||
GMP_INCLUDES GMP_LIBRARIES) | ||
mark_as_advanced(GMP_INCLUDES GMP_LIBRARIES) |