diff options
author | Matthias Hoelzl <tc@xantira.com> | 2017-11-18 17:51:24 +0100 |
---|---|---|
committer | Matthias Hoelzl <tc@xantira.com> | 2017-11-18 17:51:24 +0100 |
commit | 8354bb463856373c358653feacdfa20b97e0d80f (patch) | |
tree | b6e43feab28e66034096c6b994387ae71b9ea8d5 | |
parent | 63283eca5542314ea5b71afa1fe39bd48c202a4d (diff) |
Suppress progress messages in Visual Studio output pane
-rw-r--r-- | methods.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/methods.py b/methods.py index 6e4fecd67e..8fc7f87a41 100644 --- a/methods.py +++ b/methods.py @@ -1712,9 +1712,9 @@ def generate_vs_project(env, num_jobs): # to double quote off the directory. However, the path ends # in a backslash, so we need to remove this, lest it escape the # last double quote off, confusing MSBuild - env['MSVSBUILDCOM'] = build_commandline('scons --directory="$(ProjectDir.TrimEnd(\'\\\'))" platform=windows target=$(Configuration) tools=!tools! -j' + str(num_jobs)) - env['MSVSREBUILDCOM'] = build_commandline('scons --directory="$(ProjectDir.TrimEnd(\'\\\'))" platform=windows target=$(Configuration) tools=!tools! vsproj=yes -j' + str(num_jobs)) - env['MSVSCLEANCOM'] = build_commandline('scons --directory="$(ProjectDir.TrimEnd(\'\\\'))" --clean platform=windows target=$(Configuration) tools=!tools! -j' + str(num_jobs)) + env['MSVSBUILDCOM'] = build_commandline('scons --directory="$(ProjectDir.TrimEnd(\'\\\'))" platform=windows progress=no target=$(Configuration) tools=!tools! -j' + str(num_jobs)) + env['MSVSREBUILDCOM'] = build_commandline('scons --directory="$(ProjectDir.TrimEnd(\'\\\'))" platform=windows progress=no target=$(Configuration) tools=!tools! vsproj=yes -j' + str(num_jobs)) + env['MSVSCLEANCOM'] = build_commandline('scons --directory="$(ProjectDir.TrimEnd(\'\\\'))" --clean platform=windows progress=no target=$(Configuration) tools=!tools! -j' + str(num_jobs)) # This version information (Win32, x64, Debug, Release, Release_Debug seems to be # required for Visual Studio to understand that it needs to generate an NMAKE |