Android: Fix QLoggingRegistry test

The qtlogging.ini file needs to be detectable by QFINDTESTDATA,
so we put it in a qrc file on Android.

Change-Id: I5fb0217098c56f2b2e99ab8d1642c4a7904b18d1
Reviewed-by: BogDan Vatra <bogdan@kde.org>
bb10
Eskil Abrahamsen Blomfeldt 2014-12-18 14:33:07 +01:00
parent 4fec0dca87
commit 4bee095069
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
<RCC>
<qresource prefix="/">
<file>qtlogging.ini</file>
</qresource>
</RCC>

View File

@ -6,3 +6,8 @@ QT = core core-private testlib
SOURCES += tst_qloggingregistry.cpp
OTHER_FILES += qtlogging.ini
android:!android-no-sdk: {
RESOURCES += \
android_testdata.qrc
}