We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27f0251 commit 2a09c82Copy full SHA for 2a09c82
1 file changed
.github/workflows/ci_windows_arm64_native.yaml
@@ -178,6 +178,11 @@ jobs:
178
$qbtSourceDir = (Get-Location).Path
179
$cmakePreloadFile = Join-Path $qbtSourceDir "ci-preload.cmake"
180
181
+ $commonConfigPath = "cmake/Modules/CommonConfig.cmake"
182
+ $commonConfig = Get-Content $commonConfigPath -Raw
183
+ $commonConfig = $commonConfig -replace "QT_DISABLE_DEPRECATED_UP_TO=0x060500", "QT_DISABLE_DEPRECATED_UP_TO=0x040800"
184
+ Set-Content $commonConfigPath -Value $commonConfig
185
+
186
$cmakePreload = @(
187
'find_package(ZLIB REQUIRED)'
188
'if(TARGET ZLIB::ZLIB)'
0 commit comments