mirror of https://github.com/CGAL/cgal
23 lines
571 B
CMake
23 lines
571 B
CMake
# Created by the script cgal_create_cmake_script
|
|
# This is the CMake script for compiling a CGAL application.
|
|
|
|
project (Polynomial_kernel_Test)
|
|
|
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
|
|
|
find_package(CGAL)
|
|
|
|
if ( CGAL_FOUND )
|
|
|
|
include(${CGAL_USE_FILE})
|
|
include(CreateSingleSourceCGALProgram)
|
|
|
|
include_directories (BEFORE include)
|
|
|
|
create_single_source_cgal_program( core_test.cpp )
|
|
create_single_source_cgal_program( exact_solvers.cpp )
|
|
create_single_source_cgal_program( numeric_solvers.cpp )
|
|
create_single_source_cgal_program( polynomial.cpp )
|
|
|
|
endif()
|