Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/cmake-variants.yaml
169627 views
1
buildType:
2
default: release
3
description: Switch between debug and release build type
4
choices:
5
debug:
6
short: Debug
7
long: Debug
8
buildType: Debug
9
settings:
10
CMAKE_BUILD_TYPE: Debug
11
minimal:
12
short: Minimal
13
long: Minimal build without optional libs / GUI
14
buildType: Release
15
settings:
16
CMAKE_BUILD_TYPE: Release
17
CHECK_OPTIONAL_LIBS: OFF
18
FOX_CONFIG: ''
19
BINARY_SUFFIX: M
20
profiling:
21
short: Profiling
22
long: Profiling
23
buildType: RelWithDebInfo
24
settings:
25
CMAKE_BUILD_TYPE: RelWithDebInfo
26
PROFILING: ON
27
release:
28
short: Release
29
long: Release
30
buildType: Release
31
settings:
32
CMAKE_BUILD_TYPE: Release
33
34
bindings:
35
default: yes
36
description: Enable C#, Python and Java bindings?
37
choices:
38
yes:
39
short: Bindings
40
long: Bindings enabled
41
no:
42
short: noBindings
43
long: Bindings not enabled
44
settings:
45
ENABLE_CS_BINDINGS: OFF
46
ENABLE_JAVA_BINDINGS: OFF
47
ENABLE_PYTHON_BINDINGS: OFF
48
49