summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/qt_android_deps.prf5
1 files changed, 4 insertions, 1 deletions
diff --git a/mkspecs/features/qt_android_deps.prf b/mkspecs/features/qt_android_deps.prf
index ba37649201..c258d55687 100644
--- a/mkspecs/features/qt_android_deps.prf
+++ b/mkspecs/features/qt_android_deps.prf
@@ -43,7 +43,10 @@ DEPENDENCY_FILE = $$ANDROID_DEPENDS_DIR$$TARGET-android-dependencies.xml
!isEmpty(ANDROID_LIB_DEPENDENCIES) {
for(LIB_FILE, ANDROID_LIB_DEPENDENCIES) {
- FILE_CONTENT += "<lib file=\"$$LIB_FILE\" />"
+ EXTENDS = $$section(LIB_FILE, ":", 1, 1)
+ !isEmpty(EXTENDS): EXTENDS = "extends=\"$$EXTENDS\""
+ LIB_FILE = $$section(LIB_FILE, ":", 0, 0)
+ FILE_CONTENT += "<lib file=\"$$LIB_FILE\" $$EXTENDS />"
}
}