X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=build%2Fbuildconf.pri;h=d10ba142485e4eafb582a491d6e40319011a8317;hp=c23214939a03a022d542e24f9f237a91207acd19;hb=c8f0fad36b10552494f8ec3c3a45b52a3f0d2663;hpb=3017ca500bea98409a336e98e382b8bef1f08fce diff --git a/build/buildconf.pri b/build/buildconf.pri index c2321493..d10ba142 100644 --- a/build/buildconf.pri +++ b/build/buildconf.pri @@ -1,2 +1,35 @@ -CONFIG = release 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 +} + +sputdev { + DEFINES *= SPUTDEV +} + +profile { + CONFIG += debug + QMAKE_CXXFLAGS_DEBUG += -pg + QMAKE_LFLAGS_DEBUG += -pg +}