6 lines
159 B
Batchfile
6 lines
159 B
Batchfile
|
@echo off
|
||
|
call "%VS140COMNTOOLS%vsvars32.bat"
|
||
|
cd VC2015_32
|
||
|
msbuild /m /p:Platform=Win32 /p:Configuration=RelWithDebInfo PACKAGE.vcxproj
|
||
|
cd ..
|
||
|
exit %ERRORLEVEL%
|