forked from qtproject/qt-apps-neptune-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the config paths independent of the current directory
This change depends on commit 27fafd1 in qtapplicationmanager. Change-Id: Id1714a19d77bff0385531d46d03ab0c6c1071834 Reviewed-by: Dominik Holland <[email protected]>
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected]" | ||
windowIcon: "${CONFIG_PWD}/imports/shared/assets/icons/active/[email protected]" | ||
|
||
# development setup: no security | ||
|
||
|