diff options
author | 2021-12-20 15:03:36 -0500 | |
---|---|---|
committer | 2021-12-20 15:23:55 -0500 | |
commit | c173b5b5fbdb9013304ad62e0dc8f8bb9a072e7d (patch) | |
tree | 5848b6501b00f01f29aff69f602161cecd77edae /package/package.pro | |
parent | 95d837913ecb41577980345aeb8a1b3eb710ea2a (diff) |
Add .desktop and icon file installationmarlin_12.93.0marlin_12.92.0marlin_12.91.0marlin/12.93.0marlin/12.92.0marlin/12.91.012.93.012.92.012.91.0
Add initial .desktop file and icon copied from the launcher source
tree, and updated .pro files to install them. Also removed potentially
confusing use of non-existent $$PREFIX variable.
Bug-AGL: SPEC-4182
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I5b6a0fee2b02e4e5132689b8d892ce5f8480cc42
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 4a4be66..7cd9cde 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_/hvac.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_/hvac.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 hvac$${WGT_TYPE}.wgt root - -QMAKE_EXTRA_TARGETS += wgt +INSTALLS += desktop icon |