summaryrefslogtreecommitdiff
path: root/cmake/FindGMP.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindGMP.cmake')
-rw-r--r--cmake/FindGMP.cmake12
1 files changed, 12 insertions, 0 deletions
diff --git a/cmake/FindGMP.cmake b/cmake/FindGMP.cmake
new file mode 100644
index 000000000..4325f666e
--- /dev/null
+++ b/cmake/FindGMP.cmake
@@ -0,0 +1,12 @@
+# Try to find the GMP librairies
+# GMP_FOUND - system has GMP lib
+# GMP_INCLUDE_DIR - the GMP include directory
+# GMP_LIBRARIES - Libraries needed to use GMP
+
+find_path(GMP_INCLUDE_DIR NAMES gmp.h)
+find_library(GMP_LIBRARIES NAMES gmp libgmp)
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(GMP DEFAULT_MSG GMP_INCLUDE_DIR GMP_LIBRARIES)
+
+mark_as_advanced(GMP_INCLUDE_DIR GMP_LIBRARIES)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback