mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
17 lines
641 B
Batchfile
17 lines
641 B
Batchfile
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsamd64_x86.bat"
|
|
|
|
call update_deps.bat
|
|
|
|
msbuild UrBackupBackend.sln /p:Configuration=Release /p:Platform="win32"
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
|
|
msbuild UrBackupBackend.sln /p:Configuration=Release /p:Platform="x64"
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
|
|
msbuild UrBackupBackend.sln /p:Configuration="Release Service" /p:Platform="x64"
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
|
|
msbuild UrBackupBackend.sln /p:Configuration="Release Service" /p:Platform="win32"
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
|
|
exit /b 0 |