This commit is contained in:
rankun 2020-02-20 12:19:42 +08:00
parent 4790effdd6
commit 041c78297b

View file

@ -88,11 +88,14 @@ if /i %debug_mode% == "true" (
:: qmake ../../all.pro -spec win32-msvc "CONFIG+=debug" "CONFIG+=qml_debug" :: qmake ../../all.pro -spec win32-msvc "CONFIG+=debug" "CONFIG+=qml_debug"
:: qmake ../../all.pro %qmake_params% :: qmake ../../all.pro %qmake_params%
:qmake ../../all.pro :qmake ../../all.pro
if not %errorlevel%==0 (
echo "qmake failed"
goto return
)
nmake nmake
if not %errorlevel%==0 ( if not %errorlevel%==0 (
echo "qmake build failed" echo "nmake build failed"
goto return goto return
) )