-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathCMakePresets.json
118 lines (118 loc) · 2.83 KB
/
CMakePresets.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"version": 6,
"configurePresets": [
{
"name": "default",
"displayName": "Configure (Debug)",
"description": "Configure using ${generator} generator with Debug configuration",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build/debug",
"environment": {
"CMAKE_PRESET_NAME": "${presetName}"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "release",
"displayName": "Configure (Release)",
"description": "Configure using ${generator} generator with Release configuration",
"inherits": "default",
"binaryDir": "${sourceDir}/build/release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
],
"buildPresets": [
{
"name": "default",
"displayName": "Build (Debug)",
"description": "Build with Debug configuration",
"configurePreset": "default",
"inheritConfigureEnvironment": true,
"jobs": 0
},
{
"name": "default-skip-tests",
"displayName": "Build (Debug)",
"description": "Build with Debug configuration w/o running UT",
"inherits": "default",
"nativeToolOptions": [ "SKIP_RUN_TESTS=1" ]
},
{
"name": "release",
"displayName": "Build (Release)",
"description": "Build with Release configuration",
"inherits": "default",
"configurePreset": "release"
},
{
"name": "release-skip-tests",
"displayName": "Build (Release)",
"description": "Build with Release configuration w/o running UT",
"inherits": "release",
"cleanFirst": true,
"nativeToolOptions": [ "SKIP_RUN_TESTS=1" ]
}
],
"testPresets": [
{
"name": "default",
"displayName": "Test (Debug)",
"description": "Test with Debug configuration",
"configurePreset": "default",
"inheritConfigureEnvironment": true,
"output": {
"verbosity": "verbose"
}
},
{
"name": "release",
"displayName": "Test (Release)",
"description": "Test with Release configuration",
"inherits": "default",
"configurePreset": "release",
"output": {
"verbosity": "default"
}
}
],
"workflowPresets": [
{
"name": "default",
"steps": [
{
"type": "configure",
"name": "default"
},
{
"type": "build",
"name": "default-skip-tests"
},
{
"type": "test",
"name": "default"
}
]
},
{
"name": "release",
"steps": [
{
"type": "configure",
"name": "release"
},
{
"type": "build",
"name": "release-skip-tests"
},
{
"type": "test",
"name": "release"
}
]
}
]
}