From 3582d8905e38109335b2cf01dccf3b554d59e7ed Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Fri, 2 May 2008 11:37:44 +0000 Subject: [PATCH] Make debug builds possible again. Use qmake -config debug to enable debug builds (please do sofor testing!). --- build/buildconf.pri | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/build/buildconf.pri b/build/buildconf.pri index 6df7b13b..b85f1538 100644 --- a/build/buildconf.pri +++ b/build/buildconf.pri @@ -1,10 +1,14 @@ +# This file contains global build settings. Note that you can add stuff to CONFIG +# by using qmake -config stuff +# Notable examples: +# +# -config debug (or release or debug_and_release) +# -config verbose (to enable verbose compiling) + CONFIG += warn_on uic resources qt silent -# CONFIG += incremental link_prl nostrip qt_no_framework -release { - CONFIG *= release strip -} else { - CONFIG *= debug +verbose { + CONFIG -= silent } win32 { -- 2.20.1