Check patch apply in Qt 6 on Windows.

This commit is contained in:
John Preston
2026-06-09 17:26:22 +04:00
parent 92b8d18c1e
commit 62030fd06c
+8 -1
View File
@@ -1625,7 +1625,14 @@ mac:
cmake --install .
win:
cd qtbase
for /r %%i in (..\\..\\patches\\qtbase_%QT%\\*) do git apply %%i -v
setlocal enabledelayedexpansion
for /r %%i in (..\\..\\patches\\qtbase_%QT%\\*) do (
git apply %%i -v
if errorlevel 1 (
echo ERROR: Applying patch %%~nxi failed!
exit /b 1
)
)
cd ..
SET CONFIGURATIONS=-debug