From 5118ee7a83db3cda2d715b35536a686702a6ae66 Mon Sep 17 00:00:00 2001 From: Soonho Kong Date: Fri, 18 Jul 2014 08:29:51 -0400 Subject: [PATCH] chore(CMakeLists.txt): mark gmp and mpfr as required packages --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2fbf59067..ff7f3a6af 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -110,12 +110,12 @@ if (("${BOOST}" MATCHES "ON") AND ("${MULTI_THREAD}" MATCHES "ON")) endif() # MPFR -find_package(MPFR 3.1.0) +find_package(MPFR 3.1.0 REQUIRED) include_directories(${MPFR_INCLUDES}) set(EXTRA_LIBS ${EXTRA_LIBS} ${MPFR_LIBRARIES}) # GMP -find_package(GMP 5.0.5) +find_package(GMP 5.0.5 REQUIRED) include_directories(${GMP_INCLUDE_DIR}) set(EXTRA_LIBS ${EXTRA_LIBS} ${GMP_LIBRARIES})