diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-05-20 23:19:03 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-06-24 18:04:24 +0300 |
commit | 6457b9cefc7df82005fb01200b7a8c4d5415bda8 (patch) | |
tree | cf3323cee07b5a691831ad3714c0884823f20b7c /app/app.pro | |
parent | 97fbd6401ee0720d4efe4d4e9e2e02cfc6b0c4bd (diff) |
Removal of windowmanager depedency
Bug-AGL: SPEC-3447
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I7d7172459d38540fc7ddfac6887e68e73fd475fc
Diffstat (limited to 'app/app.pro')
-rw-r--r-- | app/app.pro | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/app/app.pro b/app/app.pro index 51a5abf..c04b838 100644 --- a/app/app.pro +++ b/app/app.pro @@ -1,10 +1,10 @@ TARGET = tbtnavi TEMPLATE = app -QT = qml network quick positioning location widgets websockets -PKGCONFIG += qlibhomescreen qlibwindowmanager qtappfw-navigation qtappfw-signal-composer +QT = qml network quick positioning location widgets websockets gui-private +PKGCONFIG += qlibhomescreen qtappfw-navigation qtappfw-signal-composer wayland-client -CONFIG += c++1z link_pkgconfig +CONFIG += c++1z link_pkgconfig wayland-scanner CONFIG(release, debug|release) { QMAKE_POST_LINK = $(STRIP) --strip-unneeded $(TARGET) @@ -16,12 +16,14 @@ SOURCES += \ main.cpp \ navigation_client.cpp \ qcheapruler.cpp \ - file_operation.cpp + file_operation.cpp \ + shell-desktop.cpp HEADERS += \ qcheapruler.hpp \ navigation_client.h \ - file_operation.h + file_operation.h \ + shell-desktop.h INCLUDEPATH += \ ../include @@ -32,3 +34,6 @@ OTHER_FILES += \ RESOURCES += \ images/images.qrc \ app.qrc + +WAYLANDCLIENTSOURCES += \ + protocol/agl-shell-desktop.xml |