aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/module-providers/Qt/templates/android_support.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/module-providers/Qt/templates/android_support.qbs')
-rw-r--r--share/qbs/module-providers/Qt/templates/android_support.qbs5
1 files changed, 3 insertions, 2 deletions
diff --git a/share/qbs/module-providers/Qt/templates/android_support.qbs b/share/qbs/module-providers/Qt/templates/android_support.qbs
index b1165dab5..1deedb0a7 100644
--- a/share/qbs/module-providers/Qt/templates/android_support.qbs
+++ b/share/qbs/module-providers/Qt/templates/android_support.qbs
@@ -189,7 +189,7 @@ Module {
} else {
f.writeLine('"stdcpp-path": "' + product.Android.sdk.ndkDir +
'/toolchains/llvm/prebuilt/' + hostArch + '/sysroot/usr/lib/",');
- f.writeLine('"application-binary": "' + theBinary.product.name + '"');
+ f.writeLine('"application-binary": "' + theBinary.product.targetName + '"');
}
f.writeLine("}");
f.close();
@@ -296,7 +296,8 @@ Module {
FileInfo.joinPaths(product.Qt.android_support._deployQtOutDir,
"libs",
input.Android.ndk.abi,
- input.fileName));
+ input.baseName + "_" + input.Android.ndk.abi +
+ ".so"));
}
}
};