Improvements to script make_install.bat. Clear not all /build folder between

builds.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-11-07 16:58:39 +02:00
parent aca82bc67e
commit ae7041935b

View file

@ -32,7 +32,10 @@ rem force qmake create new qm files
del /Q share\translations\*.qm
IF exist build (
echo Build exists. Clearing.
rd /s /q build
rd /s /q build\package
del /s /q /f build\Makefile
del /s /q /f build\*.exe
del /s /q /f build\*.dll
)
mkdir build && echo build created
cd build