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>
16 lines
357 B
Batchfile
16 lines
357 B
Batchfile
@echo off
|
|
|
|
SETLOCAL EnableExtensions EnableDelayedExpansion
|
|
|
|
del *.log
|
|
|
|
call buildAll_NoSign.bat
|
|
|
|
call tools\vs_run.bat qxldod.sln /Rebuild "Win10Debug|Win32" /Out build_Win10_Debug_Win32.log
|
|
if !ERRORLEVEL! NEQ 0 exit /B 1
|
|
|
|
call tools\vs_run.bat qxldod.sln /Rebuild "Win10Debug|x64" /Out build_Win10_Debug_x64.log
|
|
if !ERRORLEVEL! NEQ 0 exit /B 1
|
|
|
|
ENDLOCAL
|