From 227a373c6cdc30793b8890b001c6802cffaefc99 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Thu, 16 Dec 2021 16:26:47 -0500 Subject: Update for app framework removal Changes: - Remove the autobuild scripts and config.xml used by the app framework widget build. - Update the qmake files to just build a "navigation" binary and install it into /usr/bin by default. Also update the jtalk and flite script installation. - Remove the code in main.cpp that handled reading the WebSocket command-line arguments and passing them to binding related code. Bug-AGL: SPEC-4182 Signed-off-by: Scott Murray Change-Id: If3eca7b12c3ac2605c32f9832220dc58406f7b4b --- app/app.pro | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'app/app.pro') diff --git a/app/app.pro b/app/app.pro index 750e2f0..b1f49c8 100644 --- a/app/app.pro +++ b/app/app.pro @@ -1,29 +1,29 @@ +TEMPLATE = app TARGET = navigation -QT = quick qml -PKGCONFIG += qtappfw-navigation - -QT += positioning -QT += core +QT = core qml quick positioning CONFIG += c++11 link_pkgconfig -CONFIG(release, debug|release) { - QMAKE_POST_LINK = $(STRIP) --strip-unneeded $(TARGET) -} +PKGCONFIG += qtappfw-navigation HEADERS += \ markermodel.h \ guidance_module.h \ file_operation.h -SOURCES += main.cpp \ +SOURCES += \ + main.cpp \ file_operation.cpp RESOURCES += \ navigation.qrc \ images/images.qrc -include(app.pri) +target.path = $${PREFIX}/usr/bin +target.files += $${OUT_PWD}/$${TARGET} +target.CONFIG = no_check_exist executable + +INSTALLS += target + -DISTFILES += -- cgit 1.2.3-korg