summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/thread/qthreadstorage/crashonexit/crashonexit.pro
blob: d5c09ebc846fc5a10449d67b2afd613f2466a786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SOURCES += crashOnExit.cpp
debug_and_release {
    CONFIG(debug, debug|release) {
        TARGET = ../../debug/crashOnExit_helper
    } else {
        TARGET = ../../release/crashOnExit_helper
    }
} else {
    TARGET = ../crashOnExit_helper
}
QT = core
CONFIG -= app_bundle
CONFIG += console

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