forked from eclipse-sumo/sumo
-
Notifications
You must be signed in to change notification settings - Fork 7
/
cmake-variants.yaml
49 lines (48 loc) · 1.12 KB
/
cmake-variants.yaml
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
buildType:
default: release
description: Switch between debug and release build type
choices:
debug:
short: Debug
long: Debug
buildType: Debug
settings:
CMAKE_BUILD_TYPE: Debug
minimal:
short: Minimal
long: Minimal build without optional libs / GUI
buildType: Release
settings:
CMAKE_BUILD_TYPE: Release
CHECK_OPTIONAL_LIBS: no
FOX_CONFIG: ''
BINARY_SUFFIX: M
profiling:
short: Profiling
long: Profiling
buildType: RelWithDebInfo
settings:
CMAKE_BUILD_TYPE: RelWithDebInfo
PROFILING: yes
release:
short: Release
long: Release
buildType: Release
settings:
CMAKE_BUILD_TYPE: Release
bindings:
default: yes
description: Enable Python and Java bindings?
choices:
yes:
short: Bindings
long: Bindings enabled
settings:
ENABLE_PYTHON_BINDINGS: yes
ENABLE_JAVA_BINDINGS: yes
no:
short: noBindings
long: Bindings not enabled
settings:
ENABLE_JAVA_BINDINGS: no
ENABLE_PYTHON_BINDINGS: no