qxl-wddm-dod/buildAll.bat
Sameeh Jubran 23f76adecc Upgrade to Windows 10 WDK
* 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>
2016-09-09 11:09:31 +01:00

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