mirror of https://github.com/CGAL/cgal
54 lines
1.5 KiB
CMake
54 lines
1.5 KiB
CMake
# Created by the script cgal_create_cmake_script
|
|
# This is the CMake script for compiling a CGAL application.
|
|
|
|
cmake_minimum_required(VERSION 3.1...3.15)
|
|
project(Arithmetic_kernel_Tests)
|
|
|
|
find_package(CGAL REQUIRED COMPONENTS Core)
|
|
|
|
find_package(GMP QUIET)
|
|
|
|
if(GMP_FOUND)
|
|
|
|
include(${CGAL_USE_FILE})
|
|
include(CGAL_VersionUtils)
|
|
|
|
get_dependency_version(GMP)
|
|
|
|
is_version_less("${GMP_VERSION}" "4.2.0" _IS_GMP_VERSION_TO_LOW)
|
|
|
|
include_directories(include)
|
|
|
|
find_package(MPFI)
|
|
|
|
if(MPFI_FOUND)
|
|
include(${MPFI_USE_FILE})
|
|
|
|
# for the testsuite, the version of MPFI shipped with RS is used; this
|
|
# version needs GMP>=4.2, so we require this dependency only here and
|
|
# not in FindMPFI.cmake
|
|
if(_IS_GMP_VERSION_TO_LOW)
|
|
message(
|
|
STATUS
|
|
"MPFI tests need GMP>=4.2, some of the tests will not be compiled")
|
|
else(_IS_GMP_VERSION_TO_LOW)
|
|
include(${MPFI_USE_FILE})
|
|
create_single_source_cgal_program("GMP_arithmetic_kernel.cpp")
|
|
endif(_IS_GMP_VERSION_TO_LOW)
|
|
else(MPFI_FOUND)
|
|
message(
|
|
STATUS "MPFI is not present, some of the tests will not be compiled.")
|
|
endif(MPFI_FOUND)
|
|
|
|
create_single_source_cgal_program("Arithmetic_kernel.cpp")
|
|
create_single_source_cgal_program("LEDA_arithmetic_kernel.cpp")
|
|
create_single_source_cgal_program("CORE_arithmetic_kernel.cpp")
|
|
create_single_source_cgal_program("Get_arithmetic_kernel.cpp")
|
|
|
|
else()
|
|
|
|
message(
|
|
STATUS "This program requires the CGAL library, and will not be compiled.")
|
|
|
|
endif()
|