diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-02-14 18:29:54 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-02-14 18:29:54 -0500 |
commit | f932d6da561278df631d0f77ae496a46efe4750f (patch) | |
tree | 7afb38f4fb74244006ad7bb74394a97c095cfdc5 /package/package.pro | |
parent | 3c8425ae606ea142f227fd7dc9c2bc01def384ad (diff) |
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 "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 icon copied from the launcher
source tree, and updated .pro files to install them.
Bug-AGL: SPEC-4182
Change-Id: I7e519aa963f6f22a37d083b2743ad5d42ead9684
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'package/package.pro')
-rw-r--r-- | package/package.pro | 29 |
1 files changed, 8 insertions, 21 deletions
diff --git a/package/package.pro b/package/package.pro index 614096f..8ff91c8 100644 --- a/package/package.pro +++ b/package/package.pro @@ -1,24 +1,11 @@ +TEMPLATE = aux -DISTFILES = icon.svg config.xml +icon.path = /usr/share/icons/hicolor/scalable +icon.files += $$_PRO_FILE_PWD_/mediaplayer.svg +icon.CONFIG = no_check_exist -copy_icon.target = $$OUT_PWD/root/icon.svg -copy_icon.depends = $$_PRO_FILE_PWD_/icon.svg -copy_icon.commands = $(COPY_FILE) \"$$replace(copy_icon.depends, /, $$QMAKE_DIR_SEP)\" \"$$replace(copy_icon.target, /, $$QMAKE_DIR_SEP)\" -QMAKE_EXTRA_TARGETS += copy_icon -PRE_TARGETDEPS += $$copy_icon.target +desktop.path = /usr/share/applications +desktop.files = $$_PRO_FILE_PWD_/mediaplayer.desktop +desktop.CONFIG = no_check_exist -copy_config.target = $$OUT_PWD/root/config.xml -copy_config.depends = $$_PRO_FILE_PWD_/config.xml -copy_config.commands = $(COPY_FILE) \"$$replace(copy_config.depends, /, $$QMAKE_DIR_SEP)\" \"$$replace(copy_config.target, /, $$QMAKE_DIR_SEP)\" -QMAKE_EXTRA_TARGETS += copy_config -PRE_TARGETDEPS += $$copy_config.target - -WGT_TYPE = -CONFIG(debug, debug|release) { - WGT_TYPE = -debug -} - -wgt.target = package -wgt.commands = wgtpkg-pack -f -o mediaplayer$${WGT_TYPE}.wgt root - -QMAKE_EXTRA_TARGETS += wgt +INSTALLS += desktop icon |