summaryrefslogtreecommitdiffstats
path: root/launcher/launcher.pro
diff options
context:
space:
mode:
authorArnaud Ferraris <arnaud.ferraris@collabora.com>2021-12-10 12:44:27 +0100
committerArnaud Ferraris <arnaud.ferraris@collabora.com>2021-12-20 21:08:46 +0100
commit9495545c38d5e72014cba05f8ea79c98ed3321a1 (patch)
tree51a4fcd709e772c4ed824ed9757c17d3463ef4f2 /launcher/launcher.pro
parent20cd96660d4bfb44e0be5695f71a92d5fb53a143 (diff)
launcher: rely on applaunchd for application startupmarlin_12.91.0marlin/12.91.012.91.0
In the new App FW setup, `launcher` should only instruct `applaunchd` to execute an application. In order to do so, it must first build a list of available applications by looking for and parsing `.desktop` files in relevant folders. Then, when an application must be started, it has to call the corresponding `applaunchd` method through D-Bus, which will then handle the application startup using either command line execution or D-Bus activation. Bug-AGL: SPEC-4159 SPEC-4160 Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com> Change-Id: Ie2f55a5acb64ed90aa6aafb687c927d87f6cc0aa
Diffstat (limited to 'launcher/launcher.pro')
-rw-r--r--launcher/launcher.pro4
1 files changed, 3 insertions, 1 deletions
diff --git a/launcher/launcher.pro b/launcher/launcher.pro
index d99b09c..929960f 100644
--- a/launcher/launcher.pro
+++ b/launcher/launcher.pro
@@ -15,7 +15,7 @@
TEMPLATE = app
TARGET = launcher
-QT = qml quick gui-private
+QT = qml quick gui-private dbus
CONFIG += c++11 link_pkgconfig
DESTDIR = $${OUT_PWD}
PKGCONFIG += json-c
@@ -24,6 +24,8 @@ CONFIG(release, debug|release) {
QMAKE_POST_LINK = $(STRIP) --strip-unneeded $(TARGET)
}
+DBUS_INTERFACES = $$[QT_SYSROOT]/usr/share/dbus-1/interfaces/org.automotivelinux.AppLaunch.xml
+
SOURCES += \
src/main.cpp \
src/applicationmodel.cpp \