diff options
author | Scott Murray <scott.murray@konsulko.com> | 2021-01-07 16:16:13 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2021-01-07 16:26:31 -0500 |
commit | 2e08a6230a2bc61ddff19c3ff7d22528af6204fe (patch) | |
tree | 87856507a2dc726c3f2b7e6689415c2e6f7991e7 /app | |
parent | 915196a90e49fefd6c493224b127152256f95b79 (diff) |
Remove libhomescreen dependencyneedlefish_13.93.0needlefish/13.93.0marlin_12.93.0marlin_12.92.0marlin_12.91.0marlin_12.90.1marlin_12.90.0marlin/12.93.0marlin/12.92.0marlin/12.91.0marlin/12.90.1marlin/12.90.0lamprey_11.92.0lamprey_11.91.0lamprey/11.92.0lamprey/11.91.0koi_10.93.0koi_10.92.0koi/10.93.0koi/10.92.013.93.012.93.012.92.012.91.012.90.112.90.011.92.011.91.010.93.010.92.0
libhomescreen was still a dependency in the qmake files, and its
header file was being pulled in in main.cpp even though there it is
no longer used, remove usage.
Bug-AGL: SPEC-3757
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I03e42973d205f4719950403a104689a8de513dff
Diffstat (limited to 'app')
-rw-r--r-- | app/app.pri | 11 | ||||
-rw-r--r-- | app/main.cpp | 1 |
2 files changed, 1 insertions, 11 deletions
diff --git a/app/app.pri b/app/app.pri index 298b8e8..ab169b0 100644 --- a/app/app.pri +++ b/app/app.pri @@ -1,16 +1,7 @@ TEMPLATE = app QMAKE_LFLAGS += "-Wl,--hash-style=gnu -Wl,--as-needed" -load(configure) -qtCompileTest(libhomescreen) - CONFIG += link_pkgconfig -PKGCONFIG += libhomescreen qtappfw-core - -config_libhomescreen { - CONFIG += link_pkgconfig - PKGCONFIG += homescreen - DEFINES += HAVE_LIBHOMESCREEN -} +PKGCONFIG += qtappfw-core DESTDIR = $${OUT_PWD}/../package/root/bin diff --git a/app/main.cpp b/app/main.cpp index 0ed7df7..c80f869 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -8,7 +8,6 @@ #include <QQuickWindow> #include <QQmlApplicationEngine> #include <QApplication> -#include <libhomescreen.hpp> #include <taskmanager.h> #include <unistd.h> |