22 lines
814 B
Batchfile
22 lines
814 B
Batchfile
|
@if not exist "c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat" goto missingVisualStudio2019x32
|
||
|
|
||
|
@echo ************************************
|
||
|
@echo * Build winampAll_2019.sln Debug x86
|
||
|
@echo ************************************
|
||
|
call "c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat"
|
||
|
@@msbuild winampAll_2019.sln /p:Configuration=Debug /p:Platform="Win32"
|
||
|
|
||
|
@pause
|
||
|
goto :exit
|
||
|
|
||
|
:missingVisualStudio2019x32
|
||
|
@echo Microsoft Visual Studio 2019 for x32 configuration not detected
|
||
|
@pause
|
||
|
@exit
|
||
|
goto :eof
|
||
|
::-----------------------------------------------------------------------------
|
||
|
:: EXIT
|
||
|
::-----------------------------------------------------------------------------
|
||
|
:exit
|
||
|
|
||
|
endlocal & exit /b %rc%
|