tests/auto/qplugin/qplugin.pro
changeset 0 1918ee327afb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/auto/qplugin/qplugin.pro	Mon Jan 11 14:00:40 2010 +0000
@@ -0,0 +1,27 @@
+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
+
+