X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=build%2Fbuildconf.pri;h=b85f1538eb65ecc183ded7370616d32c1939a0a0;hp=85c2169afe2b6d648c539c709b808bf33ea635ff;hb=3582d8905e38109335b2cf01dccf3b554d59e7ed;hpb=ef97c1b225bd6d1ff84369eb59fc360f02c0839b diff --git a/build/buildconf.pri b/build/buildconf.pri index 85c2169a..b85f1538 100644 --- a/build/buildconf.pri +++ b/build/buildconf.pri @@ -1,2 +1,25 @@ -CONFIG += debug warn_on uic resources qt -# CONFIG += incremental link_prl nostrip qt_no_framework +# 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 + +verbose { + CONFIG -= silent +} + +win32 { + static { + CONFIG = release warn_on uic resources qt windows static + } else { + CONFIG = warn_on uic resources qt silent windows + } +} + +mac:Tiger { + QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.4u.sdk + CONFIG += x86 ppc +}