From 3ecfb83e9a58e5c6381fa301b15aed6e46e46b39 Mon Sep 17 00:00:00 2001 From: Robert Griebl Date: Tue, 21 Feb 2017 17:54:15 +0100 Subject: Make the config paths independent of the current directory This change depends on commit 27fafd1 in qtapplicationmanager. Change-Id: Id1714a19d77bff0385531d46d03ab0c6c1071834 Reviewed-by: Dominik Holland --- am-config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/am-config.yaml b/am-config.yaml index ae7c07b..1c96486 100644 --- a/am-config.yaml +++ b/am-config.yaml @@ -4,25 +4,25 @@ formatType: am-configuration # basic AM functionality - the builtin apps are in 'apps'. applications: - builtinAppsManifestDir: "apps" + builtinAppsManifestDir: "${CONFIG_PWD}/apps" # QML apps will be able to import from modules... runtimes: qml: - importPaths: [ "imports/shared" ] + importPaths: [ "${CONFIG_PWD}/imports/shared" ] # ... as well as the SystemUI ui: fullscreen: yes - mainQml: "Main.qml" - importPaths: [ "imports/shared", "imports/system" ] + mainQml: "${CONFIG_PWD}/Main.qml" + importPaths: [ "${CONFIG_PWD}/imports/shared", "${CONFIG_PWD}/imports/system" ] additionalConfiguration: appStoreServerUrl: 'http://chaos.pelagicore.net:8080' styleConfig: "auto" showCluster: yes - windowIcon: "imports/shared/assets/icons/active/apps@96.png" + windowIcon: "${CONFIG_PWD}/imports/shared/assets/icons/active/apps@96.png" # development setup: no security -- cgit v1.2.1