summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/plugin/qplugin/qplugin.pro
blob: 37a12da73228d0017bf3fbbdec47057981476f21 (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
27
28
QT = core
TEMPLATE = subdirs
win32 {
    exists($$[QT_INSTALL_LIBS]/QtCore4.dll) {
        SUBDIRS = releaseplugin
    }
    exists($$[QT_INSTALL_LIBS]/QtCored4.dll) {
        SUBDIRS += debugplugin
    }
}
mac {
    CONFIG(debug, debug|release): {
         SUBDIRS += debugplugin 
         tst_qplugin_pro.depends += debugplugin
    }
    CONFIG(release, debug|release): {
        SUBDIRS += releaseplugin 
        tst_qplugin_pro.depends += releaseplugin
    }
}
!win32:!mac:{
    SUBDIRS = debugplugin releaseplugin
    tst_qplugin_pro.depends += debugplugin releaseplugin
} 
SUBDIRS += tst_qplugin.pro


CONFIG += parallel_test