summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2011-06-01 07:13:51 (GMT)
committerChristian Kamm <christian.d.kamm@nokia.com>2011-06-01 09:00:08 (GMT)
commit4fd3f754104f56c625f7cbcca13fa12b4f633957 (patch)
tree5de1f27128a5b82d351ed696c537ba198e53070e /tests
parentbedf245d3ee7c5760d56bb67e97d6a62a34105e9 (diff)
downloadQt-4fd3f754104f56c625f7cbcca13fa12b4f633957.zip
Qt-4fd3f754104f56c625f7cbcca13fa12b4f633957.tar.gz
Qt-4fd3f754104f56c625f7cbcca13fa12b4f633957.tar.bz2
Fixed compile of tst_qscriptextensionplugin on some Windows configurations
The debug and release versions of staticplugin are qmake'd with the same destination directory. This causes the generated staticplugin .prl file to always refer to the debug versions of Qt libraries, even if Qt was configured with -release. The .prl mechanism is not useful for this test, so simply disable it to solve the problem. Reviewed-by: ckamm
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qscriptextensionplugin/staticplugin/staticplugin.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/qscriptextensionplugin/staticplugin/staticplugin.pro b/tests/auto/qscriptextensionplugin/staticplugin/staticplugin.pro
index a003338..65c4e8f 100644
--- a/tests/auto/qscriptextensionplugin/staticplugin/staticplugin.pro
+++ b/tests/auto/qscriptextensionplugin/staticplugin/staticplugin.pro
@@ -1,5 +1,6 @@
TEMPLATE = lib
CONFIG += static plugin
+CONFIG -= create_prl # not needed, and complicates debug/release
SOURCES = staticplugin.cpp
RESOURCES = staticplugin.qrc
QT = core script