forked from eclipse-sumo/sumo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmake-variants.yaml
73 lines (70 loc) · 1.57 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
buildType:
default: debug
description: Switch between debug and release build type
choices:
debug:
short: Debug
long: Debug
buildType: Debug
settings:
CMAKE_BUILD_TYPE: Debug
release:
short: Release
long: Release
buildType: Release
settings:
CMAKE_BUILD_TYPE: Release
useFMI:
default: 'no'
description: Enable building of FMUs for SUMO
choices:
'yes':
short: FMI
long: FMI
settings:
FMI: 'yes'
'no':
short: 'noFMI'
long: 'noFMI'
settings:
FMI: 'no'
pythonBindings:
default: 'default'
description: Enable Python bindings?
choices:
'default':
short: Python (def.)
long: Python (default)
settings:
ENABLE_PYTHON_BINDINGS: 'yes'
'brew-3.8':
short: Python 3.8 (brew)
long: macOS homebrew Python 3.8
settings:
ENABLE_PYTHON_BINDINGS: 'yes'
PYTHON_EXECUTABLE: "/usr/local/bin/python3.8"
'brew-3.9':
short: Python 3.9 (brew)
long: macOS homebrew Python 3.9
settings:
ENABLE_PYTHON_BINDINGS: 'yes'
PYTHON_EXECUTABLE: "/usr/local/bin/python3.9"
'no':
short: 'noPython'
long: noPython
settings:
ENABLE_PYTHON_BINDINGS: 'no'
javaBindings:
default: 'no'
description: Enable Java bindings?
choices:
'no':
short: 'noJava'
long: noJava
settings:
ENABLE_JAVA_BINDINGS: 0
'default':
short: Java (def.)
long: Java default installation
settings:
ENABLE_JAVA_BINDINGS: 'yes'