1
0
Fork 0

clean directories before build

This commit is contained in:
Frank Celler 2014-12-24 11:16:46 +01:00
parent 88ef2ca2c2
commit f7d061ba8c
1 changed files with 10 additions and 0 deletions

10
3rdParty/v8-build.bat vendored
View File

@ -48,7 +48,12 @@ cd build
:: DEBUG
rmdir /S /Q Debug
rmdir /S /Q Debug%SUFFIX%
msbuild All.sln /t:v8 /p:Configuration=Debug /p:Platform=%MSPLATFORM%
msbuild All.sln /t:v8-libbase /p:Configuration=Debug /p:Platform=%MSPLATFORM%
msbuild All.sln /t:v8-libplatform /p:Configuration=Debug /p:Platform=%MSPLATFORM%
cd ..\third_party\icu
msbuild icu.sln /t:icudata /p:Configuration=Debug /p:Platform=%MSPLATFORM%
@ -60,7 +65,12 @@ ren Debug Debug%SUFFIX%
:: RELEASE
rmdir /S /Q Release
rmdir /S /Q Release%SUFFIX%
msbuild All.sln /t:v8 /p:Configuration=Release /p:Platform=%MSPLATFORM%
msbuild All.sln /t:v8-libbase /p:Configuration=Release /p:Platform=%MSPLATFORM%
msbuild All.sln /t:v8-libplatform /p:Configuration=Release /p:Platform=%MSPLATFORM%
cd ..\third_party\icu
msbuild icu.sln /t:icudata /p:Configuration=Release /p:Platform=%MSPLATFORM%