From f3504aa320a69d8b22002333eb728d395b32b339 Mon Sep 17 00:00:00 2001 From: Mark Young Date: Mon, 1 Feb 2016 14:51:13 -0700 Subject: misc: Modify build_windows_targets.bat to build quietly. Making these changes allows errors/warnings to be more obvious. --- build_windows_targets.bat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build_windows_targets.bat b/build_windows_targets.bat index 6a3bba24..01cf1117 100644 --- a/build_windows_targets.bat +++ b/build_windows_targets.bat @@ -27,7 +27,7 @@ echo Generating 64-bit spirv-tools CMake files for Visual Studio %VS_VERSION% cmake -G "Visual Studio %VS_VERSION% Win64" .. echo Building 64-bit Debug LoaderAndTools -msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug +msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug /verbosity:quiet REM Check for existence of one DLL, even though we should check for all results if not exist .\loader\Debug\vulkan-1.dll ( @@ -37,7 +37,7 @@ if not exist .\loader\Debug\vulkan-1.dll ( ) echo Building 64-bit Release LoaderAndTools -msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Release +msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Release /verbosity:quiet REM Check for existence of one DLL, even though we should check for all results if not exist .\loader\Release\vulkan-1.dll ( @@ -58,7 +58,7 @@ echo Generating 32-bit LoaderAndTools CMake files for Visual Studio %VS_VERSION% cmake -G "Visual Studio %VS_VERSION%" .. echo Building 32-bit Debug LoaderAndTools -msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Debug +msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Debug /verbosity:quiet REM Check for existence of one DLL, even though we should check for all results if not exist .\loader\Debug\vulkan-1.dll ( @@ -68,7 +68,7 @@ if not exist .\loader\Debug\vulkan-1.dll ( ) echo Building 32-bit Release LoaderAndTools -msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Release +msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Release /verbosity:quiet REM Check for existence of one DLL, even though we should check for all results if not exist .\loader\Release\vulkan-1.dll ( -- cgit v1.2.3