cgal/Modular_arithmetic/examples/Modular_arithmetic/CMakeLists.txt

18 lines
370 B
CMake

# Created by the script cgal_create_cmake_script
# This is the CMake script for compiling a CGAL application.
project (Modular_arithmetic_Example)
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
find_package(CGAL)
if ( CGAL_FOUND )
include(${CGAL_USE_FILE})
include(CreateSingleSourceCGALProgram)
create_single_source_cgal_program( modular_filter.cpp )
endif()