aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen
diff options
context:
space:
mode:
authorRaquel Medina <raquel.medina@konsulko.com>2019-03-11 11:21:33 +0200
committerRaquel Medina <raquel.medina@konsulko.com>2019-03-14 01:23:12 +0200
commite931f079cf5015299256f2f01b824ae42247127e (patch)
tree49b9f1f3b5bde3e2d0bfd973fea0aea40c7ff04f /homescreen
parentf91d54530387c87fa8a45bb0ce78b389aceb926b (diff)
autobuild: introduce build scripts
- Add agl autobuild script to silence build warnings on yocto. - Add linux autobuild script to build with the sdk - Migrate to afb helper library version to successfully build with the sdk using autobuild script. NB: The 2 autobuild scripts are based on the latest version of the autobuild script, but they've been customized to (i) work with the existing qmake files and (ii) the 'update' and 'package-test' targets have been removed. Bug-AGL: SPEC-2164 Change-Id: I7196665b65693bfe5557a0008fb36aa7b38068a5 Signed-off-by: Raquel Medina <raquel.medina@konsulko.com>
Diffstat (limited to 'homescreen')
-rw-r--r--homescreen/homescreen.pro8
-rw-r--r--homescreen/src/mastervolume.h2
2 files changed, 4 insertions, 6 deletions
diff --git a/homescreen/homescreen.pro b/homescreen/homescreen.pro
index 3a25880..8baa90d 100644
--- a/homescreen/homescreen.pro
+++ b/homescreen/homescreen.pro
@@ -18,7 +18,7 @@ TARGET = HomeScreen
QT = qml quick dbus websockets
CONFIG += c++11 link_pkgconfig
DESTDIR = $${OUT_PWD}/../package/root/bin
-PKGCONFIG += qlibwindowmanager qtappfw
+PKGCONFIG += qlibwindowmanager qtappfw afb-helpers-qt
LIBS += -lhomescreen
@@ -30,16 +30,14 @@ SOURCES += \
src/statusbarserver.cpp \
src/applicationlauncher.cpp \
src/mastervolume.cpp \
- src/homescreenhandler.cpp \
- helpers/qafbwebsocketclient.cpp
+ src/homescreenhandler.cpp
HEADERS += \
src/statusbarmodel.h \
src/statusbarserver.h \
src/applicationlauncher.h \
src/mastervolume.h \
- src/homescreenhandler.h \
- helpers/qafbwebsocketclient.h
+ src/homescreenhandler.h
OTHER_FILES += \
README.md
diff --git a/homescreen/src/mastervolume.h b/homescreen/src/mastervolume.h
index e23e8d1..6ae0aad 100644
--- a/homescreen/src/mastervolume.h
+++ b/homescreen/src/mastervolume.h
@@ -16,7 +16,7 @@
#include <QtCore/QObject>
#include <QQmlEngine>
-#include "../helpers/qafbwebsocketclient.h"
+#include "../qafbwebsocketclient.h"
class MasterVolume
: public QObject