summaryrefslogtreecommitdiff
path: root/tools/build_scripts/bin12/w_Rebuild_Plugins.bat
blob: d61886c10350090fc438cda5d6ad55a3936c7867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat"

call git_update.bat

if exist "Release" rd /Q /S "Release" >nul

if exist "..\include\m_version.h" del /F /Q "..\include\m_version.h"
echo on
pushd ..\build
call make_ver.bat
popd

MsBuild.exe "plugs_vad.sln" /m /t:Rebuild /p:Configuration=Release /p:Platform="Win32" /fileLogger /fileLoggerParameters:LogFile=Logs\plugs_vad.log;errorsonly;warningsonly
set BUILD_STATUS=%ERRORLEVEL%
if %BUILD_STATUS%==0 echo Build success
if not %BUILD_STATUS%==0 goto :Error

call vad.bat

rd /S /Q "Release\Obj"

rem del /F /S /Q "Release\*.pdb"

rem popd

goto :eof

:Error
echo ============================= FAIL! =============================
pause
exit