aboutsummaryrefslogtreecommitdiffstats
path: root/launcher/launcher.pro
diff options
context:
space:
mode:
authorArnaud Ferraris <arnaud.ferraris@collabora.com>2021-12-10 12:28:47 +0100
committerArnaud Ferraris <arnaud.ferraris@collabora.com>2021-12-10 12:30:39 +0100
commit20cd96660d4bfb44e0be5695f71a92d5fb53a143 (patch)
tree86d180545abb5a1c9251a7e9bae1495925bc97a0 /launcher/launcher.pro
parent200f62d3dd9a9032a5578fd993034d57014d0f09 (diff)
Remove dependency on old application framework and wayland
As the Application FW is being reworked, drop all related dependencies in order to start with a simpler initial implementation. This commit also drops wayland-related code as it won't be needed anymore with the new framework. Bug-AGL: SPEC-4159 Signed-off-by: Marius Vlad <marius.vlad@collabora.com> Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com> Change-Id: Id268e1feee363c60b85411e822103259c1071a24
Diffstat (limited to 'launcher/launcher.pro')
-rw-r--r--launcher/launcher.pro18
1 files changed, 9 insertions, 9 deletions
diff --git a/launcher/launcher.pro b/launcher/launcher.pro
index 110aedc..d99b09c 100644
--- a/launcher/launcher.pro
+++ b/launcher/launcher.pro
@@ -15,10 +15,10 @@
TEMPLATE = app
TARGET = launcher
-QT = qml quick websockets gui-private
-CONFIG += c++11 link_pkgconfig wayland-scanner
-DESTDIR = $${OUT_PWD}/../package/root/bin
-PKGCONFIG += libhomescreen wayland-client
+QT = qml quick gui-private
+CONFIG += c++11 link_pkgconfig
+DESTDIR = $${OUT_PWD}
+PKGCONFIG += json-c
CONFIG(release, debug|release) {
QMAKE_POST_LINK = $(STRIP) --strip-unneeded $(TARGET)
@@ -28,13 +28,11 @@ SOURCES += \
src/main.cpp \
src/applicationmodel.cpp \
src/appinfo.cpp \
- src/shell-desktop.cpp \
src/homescreenhandler.cpp
HEADERS += \
src/applicationmodel.h \
src/appinfo.h \
- src/shell-desktop.h \
src/homescreenhandler.h
OTHER_FILES += \
@@ -44,6 +42,8 @@ RESOURCES += \
qml/images/images.qrc \
qml/qml.qrc
-AGL_SHELL_DESKTOP_PATH = $$system(pkg-config --variable=pkgdatadir agl-compositor-0.0.19-protocols)
-WAYLANDCLIENTSOURCES += \
- $$AGL_SHELL_DESKTOP_PATH/agl-shell-desktop.xml
+target.path = $${PREFIX}/usr/bin
+target.files += $${OUT_PWD}/$${TARGET}
+target.CONFIG = no_check_exist executable
+
+INSTALLS += target