mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-11 06:03:40 +00:00
Check patch apply in Qt 6 on Windows.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user