-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmake-variants.yaml
41 lines (40 loc) · 1 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
buildType:
default: debug
choices:
debug:
short: Debug
long: Emit debug information
buildType: Debug
release:
short: Release
long: Optimize generated code
buildType: Release
relWithDebInfo:
short: RelWithDebInfo
long: Optimize generated code and generate debug information
buildType: RelWithDebInfo
profile:
short: Profile
long: Optimize generated code and generate profile information
buildType: Profile
profileLLVM:
short: ProfileLLVM
long: Optimize generated code and generate profile information using LLVMs options
buildType: ProfileLLVM
debugAsan:
short: DebugAsan
long: Instrument with Address Sanitizer
buildType: DebugAsan
generatePOT:
default: yes
choices:
yes:
short: GeneratePOT
long: Generate .pot file
settings:
GENERATE_POT: true
no:
short: NoPOT
long: Do not generate .pot file
settings:
GENERATE_POT: false