mirror of https://github.com/CGAL/cgal
57 lines
1.3 KiB
CMake
57 lines
1.3 KiB
CMake
# Created by the script cgal_create_cmake_script_with_options
|
|
# This is the CMake script for compiling a set of CGAL applications.
|
|
|
|
project( Triangulation_apps )
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.1)
|
|
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6)
|
|
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.3)
|
|
cmake_policy(VERSION 2.8.4)
|
|
else()
|
|
cmake_policy(VERSION 2.6)
|
|
endif()
|
|
endif()
|
|
|
|
set( CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true )
|
|
|
|
|
|
# CGAL and its components
|
|
find_package( CGAL QUIET COMPONENTS )
|
|
|
|
if ( NOT CGAL_FOUND )
|
|
|
|
message(STATUS "This project requires the CGAL library, and will not be compiled.")
|
|
return()
|
|
|
|
endif()
|
|
|
|
# Boost and its components
|
|
find_package( Boost REQUIRED )
|
|
|
|
if ( NOT Boost_FOUND )
|
|
|
|
message(STATUS "This project requires the Boost library, and will not be compiled.")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
find_package(Eigen3 3.1.0)
|
|
if (EIGEN3_FOUND)
|
|
include( ${EIGEN3_USE_FILE} )
|
|
endif()
|
|
|
|
# include for local directory
|
|
include_directories( BEFORE include )
|
|
|
|
# include for local package
|
|
|
|
# Creating entries for all .cpp/.C files with "main" routine
|
|
# ##########################################################
|
|
|
|
create_single_source_cgal_program( "points_to_RT_to_off.cpp" )
|
|
create_single_source_cgal_program( "points_to_DT_to_off.cpp" )
|
|
|
|
|