71
71
displayName : ' CMake (MSVC): Config x64'
72
72
inputs :
73
73
cwd : ' $(Build.SourcesDirectory)'
74
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
74
+ cmakeArgs : >
75
+ -G "$(VS_GENERATOR)" -A x64 -B out
76
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
77
+ -DBUILD_DX12=OFF
75
78
- task : CMake@1
76
79
displayName : ' CMake (MSVC): Build x64 Debug'
77
80
inputs :
86
89
displayName : ' CMake (MSVC): Config x86'
87
90
inputs :
88
91
cwd : ' $(Build.SourcesDirectory)'
89
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A Win32 -B out2 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
92
+ cmakeArgs : >
93
+ -G "$(VS_GENERATOR)" -A Win32 -B out2
94
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
95
+ -DBUILD_DX12=OFF
90
96
- task : CMake@1
91
97
displayName : ' CMake (MSVC): Build x86 Debug'
92
98
inputs :
@@ -101,7 +107,10 @@ jobs:
101
107
displayName : ' CMake (MSVC): Config ARM64'
102
108
inputs :
103
109
cwd : ' $(Build.SourcesDirectory)'
104
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -B out3 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
110
+ cmakeArgs : >
111
+ -G "$(VS_GENERATOR)" -A ARM64 -B out3
112
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
113
+ -DBUILD_DX12=OFF
105
114
- task : CMake@1
106
115
displayName : ' CMake (MSVC): Build ARM64 Debug'
107
116
inputs :
@@ -116,7 +125,9 @@ jobs:
116
125
displayName : ' CMake (UWP): Config x64'
117
126
inputs :
118
127
cwd : ' $(Build.SourcesDirectory)'
119
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out4 -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=10.0'
128
+ cmakeArgs : >
129
+ -G "$(VS_GENERATOR)" -A x64 -B out4
130
+ -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=10.0
120
131
- task : CMake@1
121
132
displayName : ' CMake (UWP): Build x64'
122
133
inputs :
@@ -126,74 +137,112 @@ jobs:
126
137
displayName : ' CMake (ClangCl): Config x64'
127
138
inputs :
128
139
cwd : ' $(Build.SourcesDirectory)'
129
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -T clangcl -B out6 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
140
+ cmakeArgs : >
141
+ -G "$(VS_GENERATOR)" -A x64 -T clangcl -B out5
142
+ -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
130
143
- task : CMake@1
131
144
displayName : ' CMake (ClangCl): Build x64 Debug'
132
145
inputs :
133
146
cwd : ' $(Build.SourcesDirectory)'
134
- cmakeArgs : --build out6 -v --config Debug
147
+ cmakeArgs : --build out5 -v --config Debug
135
148
- task : CMake@1
136
149
displayName : ' CMake (ClangCl): Build x64 Release'
137
150
inputs :
138
151
cwd : ' $(Build.SourcesDirectory)'
139
- cmakeArgs : --build out6 -v --config RelWithDebInfo
152
+ cmakeArgs : --build out5 -v --config RelWithDebInfo
140
153
- task : CMake@1
141
154
displayName : ' CMake (ClangCl): Config ARM64'
142
155
inputs :
143
156
cwd : ' $(Build.SourcesDirectory)'
144
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out7 -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)'
157
+ cmakeArgs : >
158
+ -G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out6
159
+ -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)
145
160
- task : CMake@1
146
161
displayName : ' CMake (ClangCl): Build ARM64'
147
162
inputs :
148
163
cwd : ' $(Build.SourcesDirectory)'
149
- cmakeArgs : --build out7 -v --config Debug
164
+ cmakeArgs : --build out6 -v --config Debug
150
165
- task : CMake@1
151
166
displayName : ' CMake (Win10): Config'
152
167
inputs :
153
168
cwd : ' $(Build.SourcesDirectory)'
154
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out8 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON'
169
+ cmakeArgs : >
170
+ -G "$(VS_GENERATOR)" -A x64 -B out7
171
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
172
+ -DBUILD_DX12=ON
155
173
- task : CMake@1
156
174
displayName : ' CMake (Win10): Build'
157
175
inputs :
158
176
cwd : ' $(Build.SourcesDirectory)'
159
- cmakeArgs : --build out8 -v --config Debug
177
+ cmakeArgs : --build out7 -v --config Debug
160
178
- task : CMake@1
161
179
displayName : ' CMake (MSVC Spectre): Config x64'
162
180
inputs :
163
181
cwd : ' $(Build.SourcesDirectory)'
164
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out9 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
182
+ cmakeArgs : >
183
+ -G "$(VS_GENERATOR)" -A x64 -B out8
184
+ -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON
185
+ -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
186
+ -DBUILD_DX12=OFF
165
187
- task : CMake@1
166
188
displayName : ' CMake (MSVC Spectre): Build x64 Debug'
167
189
inputs :
168
190
cwd : ' $(Build.SourcesDirectory)'
169
- cmakeArgs : --build out9 -v --config Debug
191
+ cmakeArgs : --build out8 -v --config Debug
170
192
- task : CMake@1
171
193
displayName : ' CMake (MSVC Spectre): Build x64 Release'
172
194
inputs :
173
195
cwd : ' $(Build.SourcesDirectory)'
174
- cmakeArgs : --build out9 -v --config RelWithDebInfo
196
+ cmakeArgs : --build out8 -v --config RelWithDebInfo
175
197
- task : CMake@1
176
198
displayName : ' CMake (MSVC Spectre): Config ARM64'
177
199
inputs :
178
200
cwd : ' $(Build.SourcesDirectory)'
179
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -B out10 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
201
+ cmakeArgs : >
202
+ -G "$(VS_GENERATOR)" -A ARM64 -B out9
203
+ -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON
204
+ -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
205
+ -DBUILD_DX12=OFF
180
206
- task : CMake@1
181
207
displayName : ' CMake (MSVC Spectre): Build ARM64 Debug'
182
208
inputs :
183
209
cwd : ' $(Build.SourcesDirectory)'
184
- cmakeArgs : --build out10 -v --config Debug
210
+ cmakeArgs : --build out9 -v --config Debug
185
211
- task : CMake@1
186
212
displayName : ' CMake (MSVC Spectre): Build ARM64 Release'
187
213
inputs :
188
214
cwd : ' $(Build.SourcesDirectory)'
189
- cmakeArgs : --build out10 -v --config RelWithDebInfo
215
+ cmakeArgs : --build out9 -v --config RelWithDebInfo
190
216
- task : CMake@1
191
217
displayName : ' CMake (Win10 Spectre): Config'
192
218
inputs :
193
219
cwd : ' $(Build.SourcesDirectory)'
194
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out11 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON'
220
+ cmakeArgs : >
221
+ -G "$(VS_GENERATOR)" -A x64 -B out10
222
+ -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON
223
+ -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
224
+ -DBUILD_DX12=ON
195
225
- task : CMake@1
196
226
displayName : ' CMake (Win10 Spectre): Build'
227
+ inputs :
228
+ cwd : ' $(Build.SourcesDirectory)'
229
+ cmakeArgs : --build out10 -v --config Debug
230
+ - task : CMake@1
231
+ displayName : ' CMake (DLL): Config x64'
232
+ inputs :
233
+ cwd : ' $(Build.SourcesDirectory)'
234
+ cmakeArgs : >
235
+ -G "$(VS_GENERATOR)" -A x64 -B out11
236
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)
237
+ -DBUILD_DX12=ON
238
+ -DBUILD_SHARED_LIBS=ON
239
+ - task : CMake@1
240
+ displayName : ' CMake (DLL): Build x64 Debug'
197
241
inputs :
198
242
cwd : ' $(Build.SourcesDirectory)'
199
243
cmakeArgs : --build out11 -v --config Debug
244
+ - task : CMake@1
245
+ displayName : ' CMake (DLL): Build x64 Release'
246
+ inputs :
247
+ cwd : ' $(Build.SourcesDirectory)'
248
+ cmakeArgs : --build out10 -v --config RelWithDebInfo
0 commit comments