diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-02-14 18:33:06 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-02-14 23:34:48 +0000 |
commit | e58b0382de8e665d64b8e3486022a6bcb0572823 (patch) | |
tree | dd171390bc873b9e6d41c5a7f8a7144b66bc7287 /package/package.pro | |
parent | 9993095f758efb58ff9f311edfc1e160e24e8514 (diff) |
Update for app framework removalneedlefish_13.93.0needlefish/13.93.0marlin_12.93.0marlin/12.93.013.93.012.93.0
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 'package/package.pro')
-rw-r--r-- | package/package.pro | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/package/package.pro b/package/package.pro index 3620f37..213f7a2 100644 --- a/package/package.pro +++ b/package/package.pro @@ -1,18 +1,12 @@ +TEMPLATE = aux -DISTFILES = config.xml +icon.path = /usr/share/icons/hicolor/scalable +icon.files += $$_PRO_FILE_PWD_/messaging.svg +icon.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 +desktop.path = /usr/share/applications +desktop.files = $$_PRO_FILE_PWD_/messaging.desktop +desktop.CONFIG = no_check_exist -WGT_TYPE = -CONFIG(debug, debug|release) { - WGT_TYPE = -debug -} - -wgt.target = package -wgt.commands = wgtpkg-pack -f -o messaging$${WGT_TYPE}.wgt root - -QMAKE_EXTRA_TARGETS += wgt +#INSTALLS += desktop icon +INSTALLS += desktop |