23f76adecc
* Added Windows 10 Configurations and removed older ones. * Migration to Visual Studio 2015. * Set Allow Date, Time and Timestamp property for all builds/platforms. * Fixed up project configuration names to be consistent. * unified build output directories * Simple build script added Signed-off-by: Dmitry Fleytman <dmitry@daynix.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
20 lines
617 B
Batchfile
20 lines
617 B
Batchfile
@echo off
|
|
|
|
SETLOCAL EnableExtensions EnableDelayedExpansion
|
|
|
|
del *.log
|
|
|
|
call tools\vs_run.bat qxldod.sln /Rebuild "Win10Debug_NoSign|Win32" /Out build_Win10_Debug_NoSign_Win32.log
|
|
if !ERRORLEVEL! NEQ 0 exit /B 1
|
|
|
|
call tools\vs_run.bat qxldod.sln /Rebuild "Win10Release|Win32" /Out build_Win10_Release_Win32.log
|
|
if !ERRORLEVEL! NEQ 0 exit /B 1
|
|
|
|
call tools\vs_run.bat qxldod.sln /Rebuild "Win10Debug_NoSign|x64" /Out build_Win10_Debug_NoSign_x64.log
|
|
if !ERRORLEVEL! NEQ 0 exit /B 1
|
|
|
|
call tools\vs_run.bat qxldod.sln /Rebuild "Win10Release|x64" /Out build_Win10_Release_x64.log
|
|
if !ERRORLEVEL! NEQ 0 exit /B 1
|
|
|
|
ENDLOCAL
|