81
81
displayName : ' CMake (MSVC): Config x64'
82
82
inputs :
83
83
cwd : $(Build.SourcesDirectory)
84
- cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
84
+ cmakeArgs : >
85
+ -G "$(VS_GENERATOR)" -A x64 -B out
86
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
85
87
- task : CMake@1
86
88
displayName : ' CMake (MSVC): Build x64 Debug'
87
89
inputs :
96
98
displayName : ' CMake (MSVC): Config x86'
97
99
inputs :
98
100
cwd : $(Build.SourcesDirectory)
99
- cmakeArgs : -G "$(VS_GENERATOR)" -A Win32 -B out2 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
101
+ cmakeArgs : >
102
+ -G "$(VS_GENERATOR)" -A Win32 -B out2
103
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
100
104
- task : CMake@1
101
105
displayName : ' CMake (MSVC): Build x86 Debug'
102
106
inputs :
@@ -111,7 +115,9 @@ jobs:
111
115
displayName : ' CMake (MSVC): Config ARM64'
112
116
inputs :
113
117
cwd : $(Build.SourcesDirectory)
114
- cmakeArgs : -G "$(VS_GENERATOR)" -A ARM64 -B out3 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
118
+ cmakeArgs : >
119
+ -G "$(VS_GENERATOR)" -A ARM64 -B out3
120
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
115
121
- task : CMake@1
116
122
displayName : ' CMake (MSVC): Build ARM64 Debug'
117
123
inputs :
@@ -126,7 +132,9 @@ jobs:
126
132
displayName : ' CMake (UWP): Config x64'
127
133
inputs :
128
134
cwd : $(Build.SourcesDirectory)
129
- cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -B out4 -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=10.0
135
+ cmakeArgs : >
136
+ -G "$(VS_GENERATOR)" -A x64 -B out4
137
+ -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=10.0
130
138
- task : CMake@1
131
139
displayName : ' CMake (UWP): Build x64'
132
140
inputs :
@@ -136,112 +144,130 @@ jobs:
136
144
displayName : ' CMake (ClangCl): Config x64'
137
145
inputs :
138
146
cwd : $(Build.SourcesDirectory)
139
- cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -T clangcl -B out6 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
147
+ cmakeArgs : >
148
+ -G "$(VS_GENERATOR)" -A x64 -T clangcl -B out5
149
+ -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
140
150
- task : CMake@1
141
151
displayName : ' CMake (ClangCl): Build x64 Debug'
142
152
inputs :
143
153
cwd : $(Build.SourcesDirectory)
144
- cmakeArgs : --build out6 -v --config Debug
154
+ cmakeArgs : --build out5 -v --config Debug
145
155
- task : CMake@1
146
156
displayName : ' CMake (ClangCl): Build x64 Release'
147
157
inputs :
148
158
cwd : $(Build.SourcesDirectory)
149
- cmakeArgs : --build out6 -v --config RelWithDebInfo
159
+ cmakeArgs : --build out5 -v --config RelWithDebInfo
150
160
- task : CMake@1
151
161
displayName : ' CMake (ClangCl): Config ARM64'
152
162
inputs :
153
163
cwd : $(Build.SourcesDirectory)
154
- cmakeArgs : -G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out7 -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)
164
+ cmakeArgs : >
165
+ -G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out6
166
+ -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)
155
167
- task : CMake@1
156
168
displayName : ' CMake (ClangCl): Build ARM64'
157
169
inputs :
158
170
cwd : $(Build.SourcesDirectory)
159
- cmakeArgs : --build out7 -v --config Debug
171
+ cmakeArgs : --build out6 -v --config Debug
160
172
- task : CMake@1
161
173
displayName : ' CMake (Win10): Config'
162
174
inputs :
163
175
cwd : $(Build.SourcesDirectory)
164
- cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -B out8 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON
176
+ cmakeArgs : >
177
+ -G "$(VS_GENERATOR)" -A x64 -B out7
178
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON
165
179
- task : CMake@1
166
180
displayName : ' CMake (Win10): Build'
167
181
inputs :
168
182
cwd : $(Build.SourcesDirectory)
169
- cmakeArgs : --build out8 -v --config Debug
183
+ cmakeArgs : --build out7 -v --config Debug
170
184
- task : CMake@1
171
185
displayName : ' CMake (MSVC Spectre): Config x64'
172
186
inputs :
173
187
cwd : $(Build.SourcesDirectory)
174
- cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -B out9 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
188
+ cmakeArgs : >
189
+ -G "$(VS_GENERATOR)" -A x64 -B out8
190
+ -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
175
191
- task : CMake@1
176
192
displayName : ' CMake (MSVC Spectre): Build x64 Debug'
177
193
inputs :
178
194
cwd : $(Build.SourcesDirectory)
179
- cmakeArgs : --build out9 -v --config Debug
195
+ cmakeArgs : --build out8 -v --config Debug
180
196
- task : CMake@1
181
197
displayName : ' CMake (MSVC Spectre): Build x64 Release'
182
198
inputs :
183
199
cwd : $(Build.SourcesDirectory)
184
- cmakeArgs : --build out9 -v --config RelWithDebInfo
200
+ cmakeArgs : --build out8 -v --config RelWithDebInfo
185
201
- task : CMake@1
186
202
displayName : ' CMake (MSVC Spectre): Config ARM64'
187
203
inputs :
188
204
cwd : $(Build.SourcesDirectory)
189
- cmakeArgs : -G "$(VS_GENERATOR)" -A ARM64 -B out10 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
205
+ cmakeArgs : >
206
+ -G "$(VS_GENERATOR)" -A ARM64 -B out9
207
+ -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
190
208
- task : CMake@1
191
209
displayName : ' CMake (MSVC Spectre): Build ARM64 Debug'
192
210
inputs :
193
211
cwd : $(Build.SourcesDirectory)
194
- cmakeArgs : --build out10 -v --config Debug
212
+ cmakeArgs : --build out9 -v --config Debug
195
213
- task : CMake@1
196
214
displayName : ' CMake (MSVC Spectre): Build ARM64 Release'
197
215
inputs :
198
216
cwd : $(Build.SourcesDirectory)
199
- cmakeArgs : --build out10 -v --config RelWithDebInfo
217
+ cmakeArgs : --build out9 -v --config RelWithDebInfo
200
218
- task : CMake@1
201
219
displayName : ' CMake (Win10 Spectre): Config'
202
220
inputs :
203
221
cwd : $(Build.SourcesDirectory)
204
- cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -B out11 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON
222
+ cmakeArgs : >
223
+ -G "$(VS_GENERATOR)" -A x64 -B out10
224
+ -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON
205
225
- task : CMake@1
206
226
displayName : ' CMake (Win10 Spectre): Build'
207
227
inputs :
208
228
cwd : $(Build.SourcesDirectory)
209
- cmakeArgs : --build out11 -v --config Debug
229
+ cmakeArgs : --build out10 -v --config Debug
210
230
- task : CMake@1
211
231
displayName : ' CMake (NO_WCHAR_T): Config'
212
232
inputs :
213
233
cwd : $(Build.SourcesDirectory)
214
- cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -B out12 -DNO_WCHAR_T=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK) -DBUILD_DX12=ON
234
+ cmakeArgs : >
235
+ -G "$(VS_GENERATOR)" -A x64 -B out11
236
+ -DNO_WCHAR_T=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK) -DBUILD_DX12=ON
215
237
- task : CMake@1
216
238
displayName : ' CMake (NO_WCHAR_T): Build'
217
239
inputs :
218
240
cwd : $(Build.SourcesDirectory)
219
- cmakeArgs : --build out12 -v --config Debug
241
+ cmakeArgs : --build out11 -v --config Debug
220
242
- task : CMake@1
221
243
displayName : ' CMake (DLL): Config x64'
222
244
inputs :
223
245
cwd : $(Build.SourcesDirectory)
224
- cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -B out13 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON -DBUILD_SHARED_LIBS=ON
246
+ cmakeArgs : >
247
+ -G "$(VS_GENERATOR)" -A x64 -B out12
248
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON -DBUILD_SHARED_LIBS=ON
225
249
- task : CMake@1
226
250
displayName : ' CMake (DLL): Build x64 Debug'
227
251
inputs :
228
252
cwd : $(Build.SourcesDirectory)
229
- cmakeArgs : --build out13 -v --config Debug
253
+ cmakeArgs : --build out12 -v --config Debug
230
254
- task : CMake@1
231
255
displayName : ' CMake (DLL): Build x64 Release'
232
256
inputs :
233
257
cwd : $(Build.SourcesDirectory)
234
- cmakeArgs : --build out13 -v --config RelWithDebInfo
258
+ cmakeArgs : --build out12 -v --config RelWithDebInfo
235
259
- task : CMake@1
236
260
displayName : ' CMake (UWP DLL): Config x64'
237
261
inputs :
238
262
cwd : $(Build.SourcesDirectory)
239
- cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -B out14 -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=10.0 -DBUILD_SHARED_LIBS=ON
263
+ cmakeArgs : >
264
+ -G "$(VS_GENERATOR)" -A x64 -B out13
265
+ -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=10.0 -DBUILD_SHARED_LIBS=ON
240
266
- task : CMake@1
241
267
displayName : ' CMake (UWP DLL): Build x64'
242
268
inputs :
243
269
cwd : $(Build.SourcesDirectory)
244
- cmakeArgs : --build out14 -v
270
+ cmakeArgs : --build out13 -v
245
271
246
272
- job : CMAKE_BUILD_VCPKG
247
273
displayName : CMake using VCPKG
0 commit comments