forked from medInria/visages-superproject
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
91 lines (61 loc) · 2.57 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
cmake_minimum_required(VERSION 2.8.9)
project(visages-superProject)
## #############################################################################
## Add packages
## #############################################################################
list(APPEND external_projects
animaMath
animaFiltering
animaRegistration
QtShanoir
visagesPlugins
)
## #############################################################################
## Add modules
## #############################################################################
set(CMAKE_MODULE_PATH
${CMAKE_CURRENT_SOURCE_DIR}/cmake/externals
${CMAKE_CURRENT_SOURCE_DIR}/cmake/externals/projects_modules
${CMAKE_MODULE_PATH}
)
## #############################################################################
## Add variables
## #############################################################################
if (DEFINED CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel.")
else()
set(CMAKE_BUILD_TYPE Release CACHE STRING
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel.")
endif()
set(GFORGE_USERNAME "" CACHE STRING
"Username of your gforge account used to run svn+ssh.")
if("${GFORGE_USERNAME}" STREQUAL "")
message(WARNING
"GFORGE_USERNAME is empty !
You must provide a valid username account in order to have ssh access to
gforge.inria.fr
This is required by Anima and Vistal.
Please contact [email protected] for more details")
endif()
## #############################################################################
## Add Targets
## #############################################################################
set(global_targets
configure
install
)
# This adds targets that will be run in each external-projects
set_property(DIRECTORY PROPERTY EP_STEP_TARGETS ${global_targets})
foreach (target ${global_targets})
add_custom_target(${target})
endforeach()
## #############################################################################
## Find medinria-superproject
## #############################################################################
file(TO_CMAKE_PATH ${medInria-superProject_DIR} medInria-superProject_DIR)
find_package(medInria-superProject REQUIRED)
## #############################################################################
## Configure external-projects
## #############################################################################
include(ConfigureExternalProjects)