diff options
Diffstat (limited to 'tests/benchmarks/gui/image/qimagereader/qimagereader.pro')
-rw-r--r-- | tests/benchmarks/gui/image/qimagereader/qimagereader.pro | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/benchmarks/gui/image/qimagereader/qimagereader.pro b/tests/benchmarks/gui/image/qimagereader/qimagereader.pro new file mode 100644 index 0000000..276ac33 --- /dev/null +++ b/tests/benchmarks/gui/image/qimagereader/qimagereader.pro @@ -0,0 +1,27 @@ +load(qttest_p4) +TEMPLATE = app +TARGET = tst_qimagereader + +SOURCES += tst_qimagereader.cpp + +!contains(QT_CONFIG, no-gif):DEFINES += QTEST_HAVE_GIF +!contains(QT_CONFIG, no-jpeg):DEFINES += QTEST_HAVE_JPEG +!contains(QT_CONFIG, no-mng):DEFINES += QTEST_HAVE_MNG +!contains(QT_CONFIG, no-tiff):DEFINES += QTEST_HAVE_TIFF +QT += network + +wince*: { + addFiles.sources = images + addFiles.path = . + + CONFIG(debug, debug|release):{ + imageFormatsPlugins.sources = $$(QTDIR)/plugins/imageformats/*d4.dll + } + + CONFIG(release, debug|release):{ + imageFormatsPlugins.sources = $$(QTDIR)/plugins/imageformats/*[^d]4.dll + } + imageFormatsPlugins.path = imageformats + DEPLOYMENT += addFiles imageFormatsPlugins +} + |