summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/global/qlogging/app/app.pro
blob: b90b68574916bb9efc0cdf0540e5ddb7dfdffe0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
TEMPLATE = app

debug_and_release {
    CONFIG(debug, debug|release) {
        TARGET = ../debug/helper
    } else {
        TARGET = ../release/helper
    }
} else {
    TARGET = ../helper
}

QT = core

DESTDIR = ./

CONFIG -= app_bundle
CONFIG += console

SOURCES += main.cpp
DEFINES += QT_MESSAGELOGCONTEXT

gcc:!mingw:!haiku {
    QMAKE_LFLAGS += -rdynamic
    contains(QT_ARCH, arm): QMAKE_CXXFLAGS += -funwind-tables -fno-inline
}