From 0709fc32997c6e83b49e1311b000ba9717b87fb6 Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Wed, 14 Nov 2018 12:44:57 +0900 Subject: Add tachometer for horizontal mode Add tachometer for horizontal mode. Change-Id: Ia5ae863dc1b2bfc6c282015c5c01a47c60cc429c Signed-off-by: zheng_wenlong --- demo3/horizontal/tachometer/package/config.xml | 20 + demo3/horizontal/tachometer/package/icon.svg | 892 ++++++++++++++++++++++++ demo3/horizontal/tachometer/package/package.pro | 19 + 3 files changed, 931 insertions(+) create mode 100644 demo3/horizontal/tachometer/package/config.xml create mode 100644 demo3/horizontal/tachometer/package/icon.svg create mode 100644 demo3/horizontal/tachometer/package/package.pro (limited to 'demo3/horizontal/tachometer/package') diff --git a/demo3/horizontal/tachometer/package/config.xml b/demo3/horizontal/tachometer/package/config.xml new file mode 100644 index 0000000..08fd98c --- /dev/null +++ b/demo3/horizontal/tachometer/package/config.xml @@ -0,0 +1,20 @@ + + + tachometer + + + This is a demo application + TOYOTA + APL 2.0 + + + + + + + + + + + + diff --git a/demo3/horizontal/tachometer/package/icon.svg b/demo3/horizontal/tachometer/package/icon.svg new file mode 100644 index 0000000..0004e6b --- /dev/null +++ b/demo3/horizontal/tachometer/package/icon.svg @@ -0,0 +1,892 @@ + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/demo3/horizontal/tachometer/package/package.pro b/demo3/horizontal/tachometer/package/package.pro new file mode 100644 index 0000000..491a1b0 --- /dev/null +++ b/demo3/horizontal/tachometer/package/package.pro @@ -0,0 +1,19 @@ + +DISTFILES = icon.svg config.xml + +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 + +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.target = package +wgt.commands = wgtpkg-pack -f -o tachometer.wgt root + +QMAKE_EXTRA_TARGETS += wgt -- cgit 1.2.3-korg