summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/plugin/qplugin/qplugin.pro
blob: 5283c2d52bed273562d52c8da0df06c5a1247d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
TEMPLATE = subdirs
TESTPLUGINS =

win32 {
    contains(QT_CONFIG, debug): TESTPLUGINS += debugplugin
    contains(QT_CONFIG, release): TESTPLUGINS += releaseplugin
} else:osx {
    CONFIG(debug, debug|release): TESTPLUGINS += debugplugin
    CONFIG(release, debug|release): TESTPLUGINS += releaseplugin
} else {
    TESTPLUGINS = debugplugin releaseplugin
}

SUBDIRS += main $$TESTPLUGINS
main.file = tst_qplugin.pro
main.depends = $$TESTPLUGINS