buildscripts: Reduce verbosity of protobuf builds

A substantial portion of our build logs are just compiling protobuf.
This reduces the noise while still keeping most of the useful
information.
This commit is contained in:
Eric Anderson 2018-09-07 15:28:45 -07:00
parent cc09eab9af
commit 80883f0983
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ if "%PLATFORM%" == "X64" (
SET CMAKE_VSARCH=
)
cmake -Dprotobuf_BUILD_TESTS=OFF -G "Visual Studio %VisualStudioVersion:~0,2%%CMAKE_VSARCH%" .. || exit /b 1
msbuild /maxcpucount /p:Configuration=Release libprotoc.vcxproj || exit /b 1
msbuild /maxcpucount /p:Configuration=Release /verbosity:minimal libprotoc.vcxproj || exit /b 1
call extract_includes.bat || exit /b 1
popd
goto :eof

View File

@ -35,7 +35,7 @@ else
--prefix="$INSTALL_DIR"
# the same source dir is used for 32 and 64 bit builds, so we need to clean stale data first
make clean
make -j$NUM_CPU
make V=0 -j$NUM_CPU
make install
popd
fi