forked from tudelft3d/val3dity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
62 lines (43 loc) · 1.47 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
59
60
61
62
project( val3dity )
cmake_minimum_required(VERSION 2.6.2)
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()
add_definitions(-std=c++11)
set( CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true )
if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW )
endif()
# CGAL
find_package( CGAL QUIET COMPONENTS )
if ( NOT CGAL_FOUND )
message(SEND_ERROR "val3dity requires the CGAL library")
return()
endif()
# include helper file
include( ${CGAL_USE_FILE} )
# Boost
find_package( Boost REQUIRED )
if ( NOT Boost_FOUND )
message(SEND_ERROR "val3dity requires the Boost library")
return()
endif()
# GDAL
set( GEOS_DIR .)
find_package( GEOS )
if ( NOT GEOS_FOUND )
message(SEND_ERROR "val3dity requires the GEOS library")
endif()
include_directories( ${GEOS_INCLUDE_DIR}, include )
# Creating entries for target: val3dity
# ############################
add_executable( val3dity input.cpp pugixml.cpp geomtools.cpp Shell.cpp Solid.cpp validate_shell.cpp main.cpp )
add_to_cached_list( CGAL_EXECUTABLE_TARGETS val3dity )
# Link the executable to CGAL and third-party libraries
target_link_libraries(val3dity ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES} ${GEOS_LIBRARY})
# Have the option to properly install val3dity to the system
install(TARGETS val3dity DESTINATION bin)