diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-05-27 14:24:22 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-05-27 14:27:56 -0400 |
commit | c0208be2fdd6d30d59b534b848c1f4ce39a764d5 (patch) | |
tree | e98eaded50026086d934b27ad6363db15151de33 /conf.d/wgt/config.xml.in | |
parent | e81c43b394aba2766cea5ce7f410d56f70e7464a (diff) |
Update to use CMake app template
Rework CMake files to actually use the CMake app template macros,
with an update of the autobuild script to fix test widget building
to match the state of the other bindings.
Bug-AGL: SPEC-2049
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I88c438ed4dafd631646769d7b6dc3debd1ccd6de
Diffstat (limited to 'conf.d/wgt/config.xml.in')
-rw-r--r-- | conf.d/wgt/config.xml.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/conf.d/wgt/config.xml.in b/conf.d/wgt/config.xml.in new file mode 100644 index 0000000..1c5c24b --- /dev/null +++ b/conf.d/wgt/config.xml.in @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<widget xmlns="http://www.w3.org/ns/widgets" id="@PROJECT_NAME@" version="@PROJECT_VERSION@"> + <name>@PROJECT_NAME@</name> + <icon src="@PROJECT_ICON@"/> + <content src="@WIDGET_ENTRY_POINT@" type="@WIDGET_TYPE@"/> + <description>@PROJECT_DESCRIPTION@</description> + <author>@PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@></author> + <license>@PROJECT_LICENSE@</license> + + <feature name="urn:AGL:widget:required-permission"> + <param name="urn:AGL:permission::public:hidden" value="required" /> + <param name="urn:AGL:permission::system:run-by-default" value="required" /> + <param name="urn:AGL:permission::public:display" value="required" /> + </feature> + + <feature name="urn:AGL:widget:provided-api"> + <param name="@API_NAME@" value="ws" /> + </feature> + + <feature name="urn:AGL:widget:required-binding"> + <param name="@WIDGET_ENTRY_POINT@" value="local" /> + </feature> +</widget> |