-
Notifications
You must be signed in to change notification settings - Fork 164
/
cmake-variants.yaml
67 lines (63 loc) · 1.35 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
buildType:
default: debug
choices:
debug:
short: Debug
long: Emit debug information
buildType: Debug
release:
short: Release
long: Optimize generated code
buildType: RelWithDebInfo
io:
default: 'no'
choices:
'no':
short: No IO
long: Disable IO extension
settings:
BOOST_GIL_ENABLE_EXT_IO: no
'yes':
short: IO
long: Enable IO extension
settings:
BOOST_GIL_ENABLE_EXT_IO: yes
numeric:
default: 'no'
choices:
'no':
short: No Numeric
long: Disable Numeric extension
settings:
BOOST_GIL_ENABLE_EXT_NUMERIC: no
'yes':
short: Numeric
long: Enable Numeric extension
settings:
BOOST_GIL_ENABLE_EXT_NUMERIC: yes
toolbox:
default: 'no'
choices:
'no':
short: No Toolbox
long: Disable Toolbox extension
settings:
BOOST_GIL_ENABLE_EXT_TOOLBOX: no
'yes':
short: Toolbox
long: Enable Toolbox extension
settings:
BOOST_GIL_ENABLE_EXT_TOOLBOX: yes
headers:
default: 'no'
choices:
'no':
short: No Header Tests
long: Disable header tests extension
settings:
BOOST_GIL_BUILD_HEADER_TESTS: no
'yes':
short: Header Tests
long: Enable header tests extension
settings:
BOOST_GIL_BUILD_HEADER_TESTS: yes