diff options
author | Marco Martin <notmart@gmail.com> | 2017-06-05 16:54:37 +0200 |
---|---|---|
committer | Marco Martin <notmart@gmail.com> | 2017-06-05 17:03:36 +0200 |
commit | 1b0496d05987a7df6c8c4c51f1dfdd0e24eeb0f9 (patch) | |
tree | 964617647f5d02712b738a47e60e860142edaef1 | |
parent | c837f58d505bfbfedb39288b839a62a6e9f1d1bf (diff) | |
download | extra-cmake-modules-1b0496d05987a7df6c8c4c51f1dfdd0e24eeb0f9.tar.gz extra-cmake-modules-1b0496d05987a7df6c8c4c51f1dfdd0e24eeb0f9.tar.bz2 |
scan the whole install folder for qml dependencies
Summary:
set qml-root-path as the root install folder
of the application, as is used to scan for
import dependencies, and both qml files in share should be scanned
as well as other qml imports that may be installed in /lib
Test Plan: kirigami gallery deployment has again all the needed dependencies
Reviewers: apol
Reviewed By: apol
Subscribers: #frameworks, #build_system
Tags: #frameworks, #build_system
Differential Revision: https://phabricator.kde.org/D6103
-rw-r--r-- | toolchain/deployment-file.json.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/deployment-file.json.in b/toolchain/deployment-file.json.in index b7d28f51..c33f1120 100644 --- a/toolchain/deployment-file.json.in +++ b/toolchain/deployment-file.json.in @@ -8,7 +8,7 @@ "ndk-host": "@_HOST@", "target-architecture": "@ANDROID_ABI@", "application-binary": "@EXECUTABLE_DESTINATION_PATH@", - "qml-root-path": "@CMAKE_INSTALL_PREFIX@/share", + "qml-root-path": "@CMAKE_INSTALL_PREFIX@", ##EXTRALIBS## ##EXTRAPLUGINS## "android-package-source-directory": "@ANDROID_APK_DIR@", |