]> granicus.if.org Git - postgresql/commitdiff
This patch enables verbose output when building all projects. This is
authorNeil Conway <neilc@samurai.com>
Wed, 10 Jan 2007 03:54:35 +0000 (03:54 +0000)
committerNeil Conway <neilc@samurai.com>
Wed, 10 Jan 2007 03:54:35 +0000 (03:54 +0000)
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

src/tools/msvc/build.bat

index b2b89f020045a5b89917f05dcb34dbf56e40081d..61b85645b205d236402e10e80939db07e7f393cb 100755 (executable)
@@ -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%