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