summaryrefslogtreecommitdiffstats
path: root/tests/auto/qplugin/qplugin.pro
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qplugin/qplugin.pro')
-rw-r--r--tests/auto/qplugin/qplugin.pro28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/auto/qplugin/qplugin.pro b/tests/auto/qplugin/qplugin.pro
new file mode 100644
index 0000000000..37a12da732
--- /dev/null
+++ b/tests/auto/qplugin/qplugin.pro
@@ -0,0 +1,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