summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/kernel/qobject/signalbug/signalbug.pro
blob: 755fecbd04dc0096c6d0c02da3691085d696cd44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CONFIG -= app_bundle
CONFIG += console
debug_and_release {
    CONFIG(debug, debug|release) {
        TARGET = ../../debug/signalbug_helper
    } else {
        TARGET = ../../release/signalbug_helper
    }
} else {
    TARGET = ../signalbug_helper
}

QT = core

HEADERS += signalbug.h
SOURCES += signalbug.cpp

# This app is testdata for tst_qobject
target.path = $$[QT_INSTALL_TESTS]/tst_qobject/$$TARGET
INSTALLS += target