-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCMakeLists.txt
87 lines (67 loc) · 3 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
cmake_minimum_required(VERSION 2.8)
cmake_policy(PUSH)
include ( CMakePolicies.cmake )
# Set a consistent MACOSX_RPATH default across all CMake versions.
# When CMake 2.8.12 is required, change this default to 1.
# When CMake 3.0.0 is required, remove this block (see CMP0042).
if ( APPLE )
if ( NOT DEFINED CMAKE_MACOSX_RPATH )
set( CMAKE_MACOSX_RPATH 0 )
endif()
endif()
project( CloudCompareProjects )
# One shouldn't generate the BUILD project directly in the SOURCES folder!
if ( ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR} )
if ( NOT SAME_BUILD_AND_SOURCE_FOLDER_WARNING_ALREADY_ISSUED )
message(FATAL_ERROR "It is not advised to BUILD the binaries directly in the SOURCE folder!\n If you want to proceed with this option, just CONFIGURE the project once again" )
set( SAME_BUILD_AND_SOURCE_FOLDER_WARNING_ALREADY_ISSUED TRUE )
endif()
endif()
# Default debug suffix for libraries. it is ok for linux also
# Not sure if it is ok on apple, but enabling by default
# cause I suspect should be similar to linux
set( CMAKE_DEBUG_POSTFIX "d" )
include(CMakeSetCompilerOptions.cmake)
if (WIN32) # this option is for win only. somebody should see if it makes sense to enable it on APPLE too.
option(INSTALL_SYSTEM_LIBS "When installing needed system libs will be copied too" ON)
endif()
# Default install folders
# (on Windows - msvc generator - the '_debug' suffix is automatically added for debug configurations)
set( INSTALL_DESTINATIONS CloudCompare )
# CCViewer
OPTION( OPTION_BUILD_CCVIEWER "Check to compile CCViewer project" ON )
if( ${OPTION_BUILD_CCVIEWER} )
list( APPEND INSTALL_DESTINATIONS ccViewer )
endif()
# Load advanced scripts
include( CMakeInclude.cmake )
add_subdirectory( CC )
# Add external libraries
include( CMakeExternalLibs.cmake )
# Contrib. libraries (mainly for I/O)
include( contrib/AllSupport.cmake )
# Libs requested by both qCC & ccViewer
add_subdirectory( libs/Glew )
add_subdirectory( libs/CCFbo )
add_subdirectory( libs/qCC_db ) # must always be included after CCFbo (dependency)
add_subdirectory( libs/qCC_io ) # must always be included after qCC_db (dependency)
add_subdirectory( libs/qCC_glWindow ) # must always be included after qCC_db (dependency)
add_subdirectory( libs/qcustomplot )
# Define target folders
# (now that ccViewer can have its own plugins, qCC and ccViewer must fall in separate folders!
# Therefore the target folder is the same for Windows and Unix/Linux)
set( CLOUDCOMPARE_DEST_FOLDER CloudCompare )
set( CCVIEWER_DEST_FOLDER ccViewer )
if (APPLE)
set( CLOUDCOMPARE_MAC_BASE_DIR ${CMAKE_INSTALL_PREFIX}/${CLOUDCOMPARE_DEST_FOLDER}/CloudCompare.app CACHE INTERNAL "CloudCompare bundle dir.")
set( CCVIEWER_MAC_BASE_DIR ${CMAKE_INSTALL_PREFIX}/${CCVIEWER_DEST_FOLDER}/ccViewer.app CACHE INTERNAL "ccViewer bundle dir.")
endif()
#load plugins (potentially used by qCC and ccViewer below
add_subdirectory( plugins )
# qCC
add_subdirectory( qCC )
# CCViewer
if( ${OPTION_BUILD_CCVIEWER} )
add_subdirectory( ccViewer )
endif()
cmake_policy(POP)