-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcmake-variants.yaml
43 lines (41 loc) · 937 Bytes
/
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
buildType:
default: debug
choices:
debug:
short: Debug
long: Emit debug information
buildType: Debug
release:
short: Release
long: Optimize generated code
buildType: Release
relwdbg:
short: RelWithDebInfo
long: Release for debugging
buildType: RelWithDebInfo
tests:
default: disable tests
choices:
enabled:
short: enable tests
long: Enable building test cases
settings:
BUILD_TESTS: YES
disabled:
short: disable tests
long: Disable building test cases
settings:
BUILD_TESTS: NO
addexec:
default: add exetuable
choices:
enabled:
short: add exetuable
long: add the executable file from dbg folder
settings:
BUILD_DEBUG: YES
disabled:
short: exclude exetuable
long: do not build the executable file from dbg folder
settings:
BUILD_DEBUG: NO