equal
deleted
inserted
replaced
|
1 load(qttest_p4) |
|
2 TEMPLATE = app |
|
3 TARGET = tst_qimagereader |
|
4 |
|
5 SOURCES += tst_qimagereader.cpp |
|
6 |
|
7 !contains(QT_CONFIG, no-gif):DEFINES += QTEST_HAVE_GIF |
|
8 !contains(QT_CONFIG, no-jpeg):DEFINES += QTEST_HAVE_JPEG |
|
9 !contains(QT_CONFIG, no-mng):DEFINES += QTEST_HAVE_MNG |
|
10 !contains(QT_CONFIG, no-tiff):DEFINES += QTEST_HAVE_TIFF |
|
11 QT += network |
|
12 |
|
13 wince*: { |
|
14 addFiles.sources = images |
|
15 addFiles.path = . |
|
16 |
|
17 CONFIG(debug, debug|release):{ |
|
18 imageFormatsPlugins.sources = $$(QTDIR)/plugins/imageformats/*d4.dll |
|
19 } |
|
20 |
|
21 CONFIG(release, debug|release):{ |
|
22 imageFormatsPlugins.sources = $$(QTDIR)/plugins/imageformats/*[^d]4.dll |
|
23 } |
|
24 imageFormatsPlugins.path = imageformats |
|
25 DEPLOYMENT += addFiles imageFormatsPlugins |
|
26 } |
|
27 |