@@ -80,142 +80,142 @@ jobs:
80
80
- task : CMake@1
81
81
displayName : ' CMake (MSVC): Config x64'
82
82
inputs :
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'
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
85
85
- task : CMake@1
86
86
displayName : ' CMake (MSVC): Build x64 Debug'
87
87
inputs :
88
- cwd : ' $(Build.SourcesDirectory)'
88
+ cwd : $(Build.SourcesDirectory)
89
89
cmakeArgs : --build out -v --config Debug
90
90
- task : CMake@1
91
91
displayName : ' CMake (MSVC): Build x64 Release'
92
92
inputs :
93
- cwd : ' $(Build.SourcesDirectory)'
93
+ cwd : $(Build.SourcesDirectory)
94
94
cmakeArgs : --build out -v --config RelWithDebInfo
95
95
- task : CMake@1
96
96
displayName : ' CMake (MSVC): Config x86'
97
97
inputs :
98
- cwd : ' $(Build.SourcesDirectory)'
99
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A Win32 -B out2 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
98
+ cwd : $(Build.SourcesDirectory)
99
+ cmakeArgs : -G "$(VS_GENERATOR)" -A Win32 -B out2 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
100
100
- task : CMake@1
101
101
displayName : ' CMake (MSVC): Build x86 Debug'
102
102
inputs :
103
- cwd : ' $(Build.SourcesDirectory)'
103
+ cwd : $(Build.SourcesDirectory)
104
104
cmakeArgs : --build out2 -v --config Debug
105
105
- task : CMake@1
106
106
displayName : ' CMake (MSVC): Build x86 Release'
107
107
inputs :
108
- cwd : ' $(Build.SourcesDirectory)'
108
+ cwd : $(Build.SourcesDirectory)
109
109
cmakeArgs : --build out2 -v --config RelWithDebInfo
110
110
- task : CMake@1
111
111
displayName : ' CMake (MSVC): Config ARM64'
112
112
inputs :
113
- cwd : ' $(Build.SourcesDirectory)'
114
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -B out3 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
113
+ cwd : $(Build.SourcesDirectory)
114
+ cmakeArgs : -G "$(VS_GENERATOR)" -A ARM64 -B out3 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF
115
115
- task : CMake@1
116
116
displayName : ' CMake (MSVC): Build ARM64 Debug'
117
117
inputs :
118
- cwd : ' $(Build.SourcesDirectory)'
118
+ cwd : $(Build.SourcesDirectory)
119
119
cmakeArgs : --build out3 -v --config Debug
120
120
- task : CMake@1
121
121
displayName : ' CMake (MSVC): Build ARM64 Release'
122
122
inputs :
123
- cwd : ' $(Build.SourcesDirectory)'
123
+ cwd : $(Build.SourcesDirectory)
124
124
cmakeArgs : --build out3 -v --config RelWithDebInfo
125
125
- task : CMake@1
126
126
displayName : ' CMake (UWP): Config x64'
127
127
inputs :
128
- 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'
128
+ 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
130
130
- task : CMake@1
131
131
displayName : ' CMake (UWP): Build x64'
132
132
inputs :
133
- cwd : ' $(Build.SourcesDirectory)'
133
+ cwd : $(Build.SourcesDirectory)
134
134
cmakeArgs : --build out4 -v
135
135
- task : CMake@1
136
136
displayName : ' CMake (ClangCl): Config x64'
137
137
inputs :
138
- cwd : ' $(Build.SourcesDirectory)'
139
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -T clangcl -B out6 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
138
+ cwd : $(Build.SourcesDirectory)
139
+ cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -T clangcl -B out6 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
140
140
- task : CMake@1
141
141
displayName : ' CMake (ClangCl): Build x64 Debug'
142
142
inputs :
143
- cwd : ' $(Build.SourcesDirectory)'
143
+ cwd : $(Build.SourcesDirectory)
144
144
cmakeArgs : --build out6 -v --config Debug
145
145
- task : CMake@1
146
146
displayName : ' CMake (ClangCl): Build x64 Release'
147
147
inputs :
148
- cwd : ' $(Build.SourcesDirectory)'
148
+ cwd : $(Build.SourcesDirectory)
149
149
cmakeArgs : --build out6 -v --config RelWithDebInfo
150
150
- task : CMake@1
151
151
displayName : ' CMake (ClangCl): Config ARM64'
152
152
inputs :
153
- cwd : ' $(Build.SourcesDirectory)'
154
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out7 -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)'
153
+ cwd : $(Build.SourcesDirectory)
154
+ cmakeArgs : -G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out7 -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)
155
155
- task : CMake@1
156
156
displayName : ' CMake (ClangCl): Build ARM64'
157
157
inputs :
158
- cwd : ' $(Build.SourcesDirectory)'
158
+ cwd : $(Build.SourcesDirectory)
159
159
cmakeArgs : --build out7 -v --config Debug
160
160
- task : CMake@1
161
161
displayName : ' CMake (Win10): Config'
162
162
inputs :
163
- cwd : ' $(Build.SourcesDirectory)'
164
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out8 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON'
163
+ cwd : $(Build.SourcesDirectory)
164
+ cmakeArgs : -G "$(VS_GENERATOR)" -A x64 -B out8 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON
165
165
- task : CMake@1
166
166
displayName : ' CMake (Win10): Build'
167
167
inputs :
168
- cwd : ' $(Build.SourcesDirectory)'
168
+ cwd : $(Build.SourcesDirectory)
169
169
cmakeArgs : --build out8 -v --config Debug
170
170
- task : CMake@1
171
171
displayName : ' CMake (MSVC Spectre): Config x64'
172
172
inputs :
173
- 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'
173
+ 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
175
175
- task : CMake@1
176
176
displayName : ' CMake (MSVC Spectre): Build x64 Debug'
177
177
inputs :
178
- cwd : ' $(Build.SourcesDirectory)'
178
+ cwd : $(Build.SourcesDirectory)
179
179
cmakeArgs : --build out9 -v --config Debug
180
180
- task : CMake@1
181
181
displayName : ' CMake (MSVC Spectre): Build x64 Release'
182
182
inputs :
183
- cwd : ' $(Build.SourcesDirectory)'
183
+ cwd : $(Build.SourcesDirectory)
184
184
cmakeArgs : --build out9 -v --config RelWithDebInfo
185
185
- task : CMake@1
186
186
displayName : ' CMake (MSVC Spectre): Config ARM64'
187
187
inputs :
188
- 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'
188
+ 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
190
190
- task : CMake@1
191
191
displayName : ' CMake (MSVC Spectre): Build ARM64 Debug'
192
192
inputs :
193
- cwd : ' $(Build.SourcesDirectory)'
193
+ cwd : $(Build.SourcesDirectory)
194
194
cmakeArgs : --build out10 -v --config Debug
195
195
- task : CMake@1
196
196
displayName : ' CMake (MSVC Spectre): Build ARM64 Release'
197
197
inputs :
198
- cwd : ' $(Build.SourcesDirectory)'
198
+ cwd : $(Build.SourcesDirectory)
199
199
cmakeArgs : --build out10 -v --config RelWithDebInfo
200
200
- task : CMake@1
201
201
displayName : ' CMake (Win10 Spectre): Config'
202
202
inputs :
203
- 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'
203
+ 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
205
205
- task : CMake@1
206
206
displayName : ' CMake (Win10 Spectre): Build'
207
207
inputs :
208
- cwd : ' $(Build.SourcesDirectory)'
208
+ cwd : $(Build.SourcesDirectory)
209
209
cmakeArgs : --build out11 -v --config Debug
210
210
- task : CMake@1
211
211
displayName : ' CMake (NO_WCHAR_T): Config'
212
212
inputs :
213
- 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'
213
+ 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
215
215
- task : CMake@1
216
216
displayName : ' CMake (NO_WCHAR_T): Build'
217
217
inputs :
218
- cwd : ' $(Build.SourcesDirectory)'
218
+ cwd : $(Build.SourcesDirectory)
219
219
cmakeArgs : --build out12 -v --config Debug
220
220
221
221
- job : CMAKE_BUILD_VCPKG
@@ -240,53 +240,53 @@ jobs:
240
240
- task : CmdLine@2
241
241
displayName : VCPKG install packages
242
242
inputs :
243
- script : call vcpkg install --x-manifest-root=$(VCPKG_MANIFEST_DIR)
243
+ script : call vcpkg install --x-manifest-root=$(VCPKG_MANIFEST_DIR) --triplet=x64-windows
244
244
workingDirectory : $(VCPKG_ROOT)
245
245
- task : CMake@1
246
246
displayName : ' CMake (MSVC): Config x64'
247
247
inputs :
248
- cwd : ' $(Build.SourcesDirectory)'
248
+ cwd : $(Build.SourcesDirectory)
249
249
cmakeArgs : >
250
- ' -G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
250
+ -G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
251
251
-DCMAKE_TOOLCHAIN_FILE="$(VCPKG_CMAKE_DIR)" -DVCPKG_MANIFEST_DIR="$(VCPKG_MANIFEST_DIR)" -DVCPKG_TARGET_TRIPLET=x64-windows
252
252
- task : CMake@1
253
253
displayName : ' CMake (MSVC): Build x64 Debug'
254
254
inputs :
255
- cwd : ' $(Build.SourcesDirectory)'
255
+ cwd : $(Build.SourcesDirectory)
256
256
cmakeArgs : --build out -v --config Debug
257
257
- task : CMake@1
258
258
displayName : ' CMake (MSVC): Config x64 w/ OpenEXR'
259
259
inputs :
260
- cwd : ' $(Build.SourcesDirectory)'
260
+ cwd : $(Build.SourcesDirectory)
261
261
cmakeArgs : >
262
- ' -G "$(VS_GENERATOR)" -A x64 -B out2 -DENABLE_OPENEXR_SUPPORT=ON -DBUILD_TESTING=OFF -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
263
- -DCMAKE_TOOLCHAIN_FILE="$(VCPKG_CMAKE_DIR)" -DVCPKG_MANIFEST_DIR="$(VCPKG_MANIFEST_DIR)"
262
+ -G "$(VS_GENERATOR)" -A x64 -B out2 -DENABLE_OPENEXR_SUPPORT=ON -DBUILD_TESTING=OFF -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
263
+ -DCMAKE_TOOLCHAIN_FILE="$(VCPKG_CMAKE_DIR)" -DVCPKG_MANIFEST_DIR="$(VCPKG_MANIFEST_DIR)" -DVCPKG_TARGET_TRIPLET=x64-windows
264
264
- task : CMake@1
265
265
displayName : ' CMake (MSVC): Build x64 Debug w/ OpenEXR'
266
266
inputs :
267
- cwd : ' $(Build.SourcesDirectory)'
267
+ cwd : $(Build.SourcesDirectory)
268
268
cmakeArgs : --build out2 -v --config Debug
269
269
- task : CMake@1
270
270
displayName : ' CMake (MSVC): Config x64 w/ libjpeg'
271
271
inputs :
272
- cwd : ' $(Build.SourcesDirectory)'
272
+ cwd : $(Build.SourcesDirectory)
273
273
cmakeArgs : >
274
- ' -G "$(VS_GENERATOR)" -A x64 -B out3 -DENABLE_LIBJPEG_SUPPORT=ON -DBUILD_TESTING=OFF -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
274
+ -G "$(VS_GENERATOR)" -A x64 -B out3 -DENABLE_LIBJPEG_SUPPORT=ON -DBUILD_TESTING=OFF -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
275
275
-DCMAKE_TOOLCHAIN_FILE="$(VCPKG_CMAKE_DIR)" -DVCPKG_MANIFEST_DIR="$(VCPKG_MANIFEST_DIR)" -DVCPKG_TARGET_TRIPLET=x64-windows
276
276
- task : CMake@1
277
277
displayName : ' CMake (MSVC): Build x64 Debug w/ libjpeg'
278
278
inputs :
279
- cwd : ' $(Build.SourcesDirectory)'
279
+ cwd : $(Build.SourcesDirectory)
280
280
cmakeArgs : --build out3 -v --config Debug
281
281
- task : CMake@1
282
282
displayName : ' CMake (MSVC): Config x64 w/ libpng'
283
283
inputs :
284
- cwd : ' $(Build.SourcesDirectory)'
284
+ cwd : $(Build.SourcesDirectory)
285
285
cmakeArgs : >
286
- ' -G "$(VS_GENERATOR)" -A x64 -B out4 -DENABLE_LIBPNG_SUPPORT=ON -DBUILD_TESTING=OFF -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
286
+ -G "$(VS_GENERATOR)" -A x64 -B out4 -DENABLE_LIBPNG_SUPPORT=ON -DBUILD_TESTING=OFF -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
287
287
-DCMAKE_TOOLCHAIN_FILE="$(VCPKG_CMAKE_DIR)" -DVCPKG_MANIFEST_DIR="$(VCPKG_MANIFEST_DIR)" -DVCPKG_TARGET_TRIPLET=x64-windows
288
288
- task : CMake@1
289
289
displayName : ' CMake (MSVC): Build x64 Debug w/ libpng'
290
290
inputs :
291
- cwd : ' $(Build.SourcesDirectory)'
291
+ cwd : $(Build.SourcesDirectory)
292
292
cmakeArgs : --build out4 -v --config Debug
0 commit comments