diff options
author | Neil Conway <neilc@samurai.com> | 2007-01-10 03:54:35 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2007-01-10 03:54:35 +0000 |
commit | 840df5156abbee505b7fd299244fb929fa363008 (patch) | |
tree | a7eddf0f5f74eee25ca01146f0b511d99305ce4f | |
parent | 25d64529b811efe11c7f743d1605a98b87ac5537 (diff) | |
download | postgresql-840df5156abbee505b7fd299244fb929fa363008.tar.gz postgresql-840df5156abbee505b7fd299244fb929fa363008.zip |
This patch enables verbose output when building all projects. This is
the same output level that was used when building a single project
before, and really needed to get reasonable information about what
happens (non-verbose just says "starting build of foo" and "done
building foo", more or less).
Magnus Hagander
-rwxr-xr-x | src/tools/msvc/build.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/build.bat b/src/tools/msvc/build.bat index b2b89f02004..61b85645b20 100755 --- a/src/tools/msvc/build.bat +++ b/src/tools/msvc/build.bat @@ -12,7 +12,7 @@ if "%CONFIG%" == "" if "%1" == "RELEASE" set CONFIG=Release if not "%CONFIG%" == "" shift if "%CONFIG%" == "" set CONFIG=Debug -if "%1" == "" msbuild pgsql.sln /p:Configuration=%CONFIG% +if "%1" == "" msbuild pgsql.sln /verbosity:detailed /p:Configuration=%CONFIG% if not "%1" == "" vcbuild %1.vcproj %CONFIG% cd %STARTDIR% |