Skip to content

Commit

Permalink
Missing includes appended.
Browse files Browse the repository at this point in the history
  • Loading branch information
nemothenoone committed Aug 3, 2019
1 parent df988d6 commit b0ee025
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions cmake/packages/FindGMP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ endif()

find_library(GMP_LIBRARIES gmp PATHS $ENV{GMPDIR} ${LIB_INSTALL_DIR})

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(GMP DEFAULT_MSG
GMP_INCLUDE_DIRS GMP_LIBRARIES GMP_VERSION_OK)
if(GMP_FOUND)
Expand Down
1 change: 1 addition & 0 deletions cmake/packages/FindGMPXX.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@ if(GMP_FOUND)
PATHS ${GMP_LIBRARIES_DIR_SEARCH}
DOC "Path to the GMPXX library")

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(GMPXX "DEFAULT_MSG" GMPXX_LIBRARIES GMPXX_INCLUDE_DIRS)
endif()
1 change: 1 addition & 0 deletions cmake/packages/FindMPC.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ endif(MPC_INCLUDE_DIRS)
find_library(MPC_LIBRARIES mpc
PATHS $ENV{GMPDIR} $ENV{MPFRDIR} $ENV{MPCDIR} ${LIB_INSTALL_DIR})

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(MPC DEFAULT_MSG
MPC_INCLUDE_DIRS MPC_LIBRARIES MPC_VERSION_OK)
mark_as_advanced(MPC_INCLUDE_DIRS MPC_LIBRARIES)
1 change: 1 addition & 0 deletions cmake/packages/FindMPFR.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ endif()
find_library(MPFR_LIBRARIES mpfr
PATHS $ENV{GMPDIR} $ENV{MPFRDIR} ${LIB_INSTALL_DIR})

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(MPFR DEFAULT_MSG
MPFR_INCLUDE_DIRS MPFR_LIBRARIES MPFR_VERSION_OK)
mark_as_advanced(MPFR_INCLUDE_DIRS MPFR_LIBRARIES)
1 change: 1 addition & 0 deletions cmake/packages/FindMPIR.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ endif()

find_library(MPIR_LIBRARIES gmp PATHS $ENV{MPIRDIR} ${LIB_INSTALL_DIR})

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(MPIR DEFAULT_MSG
MPIR_INCLUDES MPIR_LIBRARIES MPIR_VERSION_OK)
if(MPIR_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion cmake/packages/FindMPIRXX.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ if(MPIR_FOUND)
DOC "Path to the MPIRXX library"
)


include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(MPIRXX "DEFAULT_MSG" MPIRXX_LIBRARIES MPIRXX_INCLUDE_DIRS)
endif()
1 change: 1 addition & 0 deletions cmake/packages/FindTomMath.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ find_library(TomMath_LIBRARY NAMES ${TomMath_NAMES})

# handle the QUIETLY and REQUIRED arguments and set TIFF_FOUND to TRUE if
# all listed variables are TRUE
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(TomMath DEFAULT_MSG TomMath_LIBRARY TomMath_INCLUDE_DIR)

if(TOMMATH_FOUND)
Expand Down

0 comments on commit b0ee025

Please sign in to comment.