-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
59 lines (32 loc) · 1.24 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Created by the script cgal_create_CMakeLists
# This is the CMake script for compiling a set of CGAL applications.
project( example )
cmake_minimum_required(VERSION 2.8.11)
set(CMAKE_CXX_FLAGS "-std=c++1y -stdlib=libc++")
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR})
# CGAL and its components
find_package( CGAL REQUIRED COMPONENTS Core )
if ( NOT CGAL_FOUND )
message(STATUS "This project requires the CGAL library, and will not be compiled.")
return()
endif()
find_package(Eigen3)
include_directories(${EIGEN3_INCLUDE_DIR})
# include helper file
include( ${CGAL_USE_FILE} )
add_definitions(-DCGAL_EIGEN3_ENABLED)
# 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()
# include for local directory
# include for local package
include_directories( BEFORE ../include )
# Creating entries for target: example
# ############################
add_executable( iter iteration.cpp polygon.cpp rounding.cpp)
add_to_cached_list( CGAL_EXECUTABLE_TARGETS iter )
# Link the executable to CGAL and third-party libraries
target_link_libraries(iter ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES} )