From aee2ff16cc87a939e68aa2900e23d6705dda5408 Mon Sep 17 00:00:00 2001 From: Dmitry Yudenich Date: Fri, 10 Jul 2020 14:40:15 +0300 Subject: Add client proxy for cloudproxy service Library with client proxy which hides communication with cloud proxy service has been added. It allows users to integrate cloudproxy service in their applications faster. Simple test applications have been added to demonstrate how to use libcloudproxy library. Bug-AGL: SPEC-3472 Signed-off-by: Dmitry Yudenich Change-Id: I84ab5e61ce09326e3dc49c927d402e6ec12ea1b0 --- sample/telemetry-cloud-app/app/app.pro | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 sample/telemetry-cloud-app/app/app.pro (limited to 'sample/telemetry-cloud-app/app/app.pro') diff --git a/sample/telemetry-cloud-app/app/app.pro b/sample/telemetry-cloud-app/app/app.pro new file mode 100755 index 0000000..798fa82 --- /dev/null +++ b/sample/telemetry-cloud-app/app/app.pro @@ -0,0 +1,32 @@ +TARGET = telemetrycloudapp +QT += core gui gui-private + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +DEFINES += QT_DEPRECATED_WARNINGS + +SOURCES = main.cpp \ + mainwindow.cpp \ + TelemetryWorker.cpp + +HEADERS += mainwindow.h \ + ui_mainwindow.h \ + TelemetryWorker.h + +CONFIG += link_pkgconfig +PKGCONFIG += libhomescreen qtappfw-core libcloudproxy + +CONFIG(release, debug|release) { + QMAKE_POST_LINK = $(STRIP) --strip-unneeded $(TARGET) +} + +LIBS += -ljson-c -lafbwsc -lsystemd + +RESOURCES += \ + images/images.qrc + +include(app.pri) + +DISTFILES += \ + images/AGL_HMI_Blue_Background_NoCar-01.png + -- cgit 1.2.3-korg