File tree 2 files changed +18
-15
lines changed
2 files changed +18
-15
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,11 @@ else()
80
80
set (CORBA_IMPLEMENTATION ${CORBA_IMPLEMENTATION} CACHE STRING "The implementation of CORBA to use (allowed values: TAO or OMNIORB )" )
81
81
endif ()
82
82
83
+ #
84
+ # Enable/disable orogen and dependencies
85
+ #
86
+ option (BUILD_OROGEN "Build orogen and its dependencies" OFF )
87
+
83
88
#############
84
89
# Git magic #
85
90
#############
@@ -171,16 +176,18 @@ build_external_project(ocl
171
176
DEPENDS log4cpp rtt
172
177
)
173
178
174
- build_external_project(utilrb)
175
- build_external_project(typelib
176
- DEPENDS utilrb
177
- )
178
- build_external_project(rtt_typelib
179
- DEPENDS rtt typelib
180
- )
181
- build_external_project(orogen
182
- DEPENDS rtt rtt_typelib utilrb
183
- )
179
+ if (BUILD_OROGEN)
180
+ build_external_project(utilrb)
181
+ build_external_project(typelib
182
+ DEPENDS utilrb
183
+ )
184
+ build_external_project(rtt_typelib
185
+ DEPENDS rtt typelib
186
+ )
187
+ build_external_project(orogen
188
+ DEPENDS rtt rtt_typelib utilrb
189
+ )
190
+ endif ()
184
191
185
192
#######################################
186
193
# Build orocos_toolchain meta package #
Original file line number Diff line number Diff line change 4
4
<name >orocos_toolchain</name >
5
5
<version >2.9.0</version >
6
6
<description >
7
- This package provides the entire orocos_toolchain
7
+ This metapackage provides Orocos RTT and OCL and dependencies.
8
8
</description >
9
9
<license >GPL v2 + linking exception</license >
10
10
<license >LGPL-2.1</license >
14
14
15
15
<exec_depend >log4cpp</exec_depend >
16
16
<exec_depend >ocl</exec_depend >
17
- <exec_depend >orogen</exec_depend >
18
17
<exec_depend >rtt</exec_depend >
19
- <exec_depend >rtt_typelib</exec_depend >
20
- <exec_depend >typelib</exec_depend >
21
- <exec_depend >utilrb</exec_depend >
22
18
23
19
<export >
24
20
<metapackage />
You can’t perform that action at this time.
0 commit comments