We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 357c353 commit 3c83e04Copy full SHA for 3c83e04
1 file changed
.github/workflows/ci_windows_arm64_native.yaml
@@ -203,6 +203,11 @@ jobs:
203
$originalContent = Get-Content $checkPackagesPath -Raw
204
Set-Content $checkPackagesPath -Value ($fixCode + "`n" + $originalContent)
205
206
+ $commonConfigPath = "cmake/Modules/CommonConfig.cmake"
207
+ $commonConfig = Get-Content $commonConfigPath -Raw
208
+ $commonConfig = $commonConfig -replace "QT_DISABLE_DEPRECATED_UP_TO=0x060500", "QT_DISABLE_DEPRECATED_UP_TO=0x060A00"
209
+ Set-Content $commonConfigPath -Value $commonConfig
210
+
211
cmake `
212
-B build `
213
-G Ninja `
0 commit comments