diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-10-20 14:30:32 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-12-01 13:07:57 +0200 |
commit | 694ec412b5ae13b84229e5c65f2e3dce2babee34 (patch) | |
tree | e25a0f1a94e025ad729b37d5f35ec4494aff8b0d /conf.d/wgt | |
parent | e6ad86a86fe3ed73cac6478e07eb1220399ace1f (diff) |
build: Added AGL specific build directory for widget building
Adds also a cmake as we don't have meson alternative as of yet.
Bug-AGL: SPEC-3605
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I43cc98294d7bb5d887370c8ce2db854cbd9055d7
Diffstat (limited to 'conf.d/wgt')
-rw-r--r-- | conf.d/wgt/config.xml.in | 13 |
1 files changed, 13 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..9550cb5 --- /dev/null +++ b/conf.d/wgt/config.xml.in @@ -0,0 +1,13 @@ +<?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:display" value="required" /> + <param name="urn:AGL:permission::public:no-htdocs" value="required" /> + </feature> +</widget> |