diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2019-07-04 11:07:29 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2019-08-01 17:45:07 +0200 |
commit | ff3e5e63af44dc08eac1d7808e32edb01ae920df (patch) | |
tree | d15f762d0ea790361329b2d108e64f50f9e84e28 /conf.d/wgt/config.xml.in | |
parent | da6d2e997d5174cafa6dc38e4de2fc169041157e (diff) |
Add a config.xml
Add the config.xml file to allow the harvester running on a target.
Change-Id: I8446c1e9f3713ee4cd8c8a588ba5ffc86786577e
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'conf.d/wgt/config.xml.in')
-rw-r--r-- | conf.d/wgt/config.xml.in | 15 |
1 files changed, 15 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..c7510b3 --- /dev/null +++ b/conf.d/wgt/config.xml.in @@ -0,0 +1,15 @@ +<?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:provided-api"> + <param name="harvester" value="ws" /> + </feature> + <feature name="urn:AGL:widget:required-api"> + <param name="lib/afb-harvester.so" value="local" /> + </feature> +</widget> |