Android: Fix QImageReader test
The files for the test have to be included in a qrc to be available on Android. Most of the image files are already in a qrc, but a couple were missing. We add this in a separate qrc to avoid interfering with the tests on other platforms. Change-Id: Ibb24f5015a1aba4d5622e14f7aae80bc18611ec4 Reviewed-by: BogDan Vatra <bogdan@kde.org>bb10
parent
988f1b2e57
commit
b4031387f9
|
|
@ -0,0 +1,6 @@
|
|||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>images/trans.gif</file>
|
||||
<file>images/kollada-noext</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
|
@ -5,6 +5,10 @@ MOC_DIR=tmp
|
|||
QT += core-private gui-private network testlib
|
||||
RESOURCES += qimagereader.qrc
|
||||
|
||||
android: !android-no-sdk {
|
||||
RESOURCES += android_testdata.qrc
|
||||
}
|
||||
|
||||
win32-msvc:QMAKE_CXXFLAGS -= -Zm200
|
||||
win32-msvc:QMAKE_CXXFLAGS += -Zm800
|
||||
win32-msvc.net:QMAKE_CXXFLAGS -= -Zm300
|
||||
|
|
|
|||
Loading…
Reference in New Issue