summaryrefslogtreecommitdiffstats
path: root/app/app.pro
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2022-02-14 18:33:06 -0500
committerScott Murray <scott.murray@konsulko.com>2022-02-14 23:34:48 +0000
commite58b0382de8e665d64b8e3486022a6bcb0572823 (patch)
treedd171390bc873b9e6d41c5a7f8a7144b66bc7287 /app/app.pro
parent9993095f758efb58ff9f311edfc1e160e24e8514 (diff)
Changes: - Remove the autobuild scripts and config.xml used by the app framework widget build. - Update the qmake files to just build a "settings" binary and install it into /usr/bin by default. - Remove the code in main.cpp that handled reading the WebSocket command-line arguments and passing them to binding related code. - Add initial .desktop file, and updated .pro files to install it. An icon will be added in a future update, as the launcher did not previously provide one. Bug-AGL: SPEC-4182 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: Icd7126b7ddd41dbf0793d28d31fa962f3a36acb1
Diffstat (limited to 'app/app.pro')
-rw-r--r--app/app.pro17
1 files changed, 9 insertions, 8 deletions
diff --git a/app/app.pro b/app/app.pro
index 54be9ee..4d2bc87 100644
--- a/app/app.pro
+++ b/app/app.pro
@@ -1,17 +1,18 @@
+TEMPLATE = app
TARGET = messaging
-QT = quickcontrols2
+QT = qml quickcontrols2
+CONFIG += c++11 link_pkgconfig
SOURCES = main.cpp
-CONFIG += link_pkgconfig
-PKGCONFIG += qtappfw-bt-map libafbwsc
-
-CONFIG(release, debug|release) {
- QMAKE_POST_LINK = $(STRIP) --strip-unneeded $(TARGET)
-}
+PKGCONFIG += qtappfw-bt-map
RESOURCES += \
Messaging.qrc \
images/images.qrc
-include(app.pri)
+target.path = /usr/bin
+target.files += $${OUT_PWD}/$${TARGET}
+target.CONFIG = no_check_exist executable
+
+INSTALLS += target