From cb822c4f476607e89ae9d31c87472c2ebe5cf0c7 Mon Sep 17 00:00:00 2001 From: Felix Kauselmann Date: Fri, 12 Feb 2021 13:12:25 +0100 Subject: [PATCH] Add CONFIG += silent to build to reduce log pollution Qmake by default creates lots of unnecessary information during builds which makes it hard to extract warnings and errors from the log. Add the undocumented silent parameter to make it less talky. --- config.pri | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.pri b/config.pri index 70c71a48..44451cde 100644 --- a/config.pri +++ b/config.pri @@ -15,6 +15,9 @@ lessThan(QT_VER_MIN, 6):!CONFIG(no_opengl) { error ("You need at least Qt 5.6 to compile YACReader or YACReaderLibrary.") } +# reduce log pollution +CONFIG += silent + # Disable coverflow for arm targets isEmpty(QMAKE_TARGET.arch) { QMAKE_TARGET.arch = $$QMAKE_HOST.arch