The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

29 lines
565 B

find_package(GMP ${GMPXX_FIND_VERSION} QUIET)
if(GMP_FOUND)
# Include dir
find_path(GMPXX_INCLUDE_DIR
NAMES gmpxx.h
HINTS ${GMP_INCLUDE_DIR}
DOC "Include directory for GMPXX"
)
# Library files
get_filename_component(GMP_LIB_PATH ${GMP_LIBRARY} DIRECTORY)
find_library(GMPXX_LIBRARY
NAMES gmpxx
HINTS ${GMP_LIB_PATH}
)
if(GMPXX_INCLUDE_DIR AND GMPXX_LIBRARY)
set(GMPXX_FOUND TRUE)
endif()
mark_as_advanced(
GMPXX_FOUND
GMPXX_INCLUDE_DIR
GMPXX_LIBRARY
)
else()
message(STATUS "Did not search for GMPXX, GMP is missing.")
endif()