2012-10-16 09:43:53 +00:00
|
|
|
QT += testlib
|
2011-07-18 23:45:08 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
TEMPLATE = app
|
|
|
|
TARGET = tst_bench_qimagereader
|
|
|
|
|
|
|
|
SOURCES += tst_qimagereader.cpp
|
|
|
|
|
|
|
|
!contains(QT_CONFIG, no-gif):DEFINES += QTEST_HAVE_GIF
|
|
|
|
!contains(QT_CONFIG, no-jpeg):DEFINES += QTEST_HAVE_JPEG
|
|
|
|
QT += network
|
|
|
|
|
|
|
|
wince*: {
|
|
|
|
addFiles.files = images
|
|
|
|
addFiles.path = .
|
|
|
|
|
|
|
|
CONFIG(debug, debug|release):{
|
2012-03-05 13:20:17 +00:00
|
|
|
imageFormatsPlugins.files = $$QT_BUILD_TREE/plugins/imageformats/*d4.dll
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CONFIG(release, debug|release):{
|
2012-03-05 13:20:17 +00:00
|
|
|
imageFormatsPlugins.files = $$QT_BUILD_TREE/plugins/imageformats/*[^d]4.dll
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
imageFormatsPlugins.path = imageformats
|
|
|
|
DEPLOYMENT += addFiles imageFormatsPlugins
|
|
|
|
}
|
|
|
|
|
2012-08-01 11:19:40 +00:00
|
|
|
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
|