diff options
| author | Mark Young <marky@lunarg.com> | 2016-02-01 14:51:13 -0700 |
|---|---|---|
| committer | Mark Young <marky@lunarg.com> | 2016-02-02 10:58:29 -0700 |
| commit | f3504aa320a69d8b22002333eb728d395b32b339 (patch) | |
| tree | 107b8a4439c11c1a296f2c25f8140c3ab0a82fee | |
| parent | c36dc9e7d043e000f6f4cb714e76e3fca61fed97 (diff) | |
| download | usermoji-f3504aa320a69d8b22002333eb728d395b32b339.tar.xz | |
misc: Modify build_windows_targets.bat to build quietly.
Making these changes allows errors/warnings to be more obvious.
| -rw-r--r-- | build_windows_targets.bat | 8 |
1 files 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 ( |
