cc58bb0b28a998dda00d15ea9a667fd2fb103b34
[staging/xdg-launcher.git] / docs / dev_guide / 3_advanced_usage.md
1 # Build a widget
2
3 ## config.xml.in file
4
5 To build a widget you need a _config.xml_ file describing what is your apps and
6 how Application Framework would launch it. This repo provide a simple default
7 file _config.xml.in_ that should work for simple application without
8 interactions with others bindings.
9
10 It is recommanded that you use the sample one which is more complete. You can
11 find it at the same location under the name _config.xml.in.sample_ (stunning
12 isn't it). Just copy the sample file to your _conf.d/wgt_ directory and name it
13 _config.xml.in_, then edit it to fit your needs.
14
15 > ***CAUTION*** : The default file is only meant to be use for a
16 > simple widget app, more complicated ones which needed to export
17 > their api, or ship several app in one widget need to use the provided
18 > _config.xml.in.sample_ which had all new Application Framework
19 > features explained and examples.
20
21 ## Using cmake template macros
22
23 To leverage all cmake templates features, you have to specify ***properties***
24 on your targets. Some macros will not works without specifying which is the
25 target type.
26
27 As the type is not always specified for some custom targets, like an ***HTML5***
28 application, macros make the difference using ***LABELS*** property.
29
30 Choose between:
31
32 - **BINDING**: Shared library that be loaded by the AGL Application Framework
33 - **BINDINGV2**: Shared library that be loaded by the AGL Application Framework.
34  This has to be accompagnied with a JSON file named like the *${OUTPUT_NAME}-apidef* of
35  the target that describe the API with OpenAPI syntax (e.g: *mybinding-apidef*).
36  Or you can choose the name by setting the *CACHE* cmake variable *OPENAPI_DEF*
37  (***CAUTION***: setting a CACHE variable is needed, or set a normal variable
38  with the *PARENT_SCOPE* option to make it visible for the parent scope
39  where the target is defined) JSON file will be used to generate header file
40  using `afb-genskel` tool.
41 - **HTDOCS**: Root directory of a web app
42 - **DATA**: Resources used by your application
43 - **EXECUTABLE**: Entry point of your application executed by the AGL
44  Application Framework
45
46 Example:
47
48 ```cmake
49 SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
50                 LABELS "HTDOCS"
51                 OUTPUT_NAME dist.prod
52         )
53 ```
54
55 If your target output is not named as the ***TARGET_NAME***, you need to specify
56 ***OUTPUT_NAME*** property that will be used by the ***populate_widget*** macro.
57
58 Use the ***populate_widget*** macro as latest statement of your target
59 definition. Then at the end of your project definition you should use the macro
60 ***build_widget*** that make an archive from the populated widget tree using the
61 `wgtpkg-pack` Application Framework tools.
62
63 ## Macro reference
64
65 ### PROJECT_TARGET_ADD
66
67 Typical usage would be to add the target to your project using macro
68 `PROJECT_TARGET_ADD` with the name of your target as parameter.
69
70 Example:
71
72 ```cmake
73 PROJECT_TARGET_ADD(low-can-demo)
74 ```
75
76 > ***NOTE***: This will make available the variable `${TARGET_NAME}`
77 > set with the specificied name. This variable will change at the next call
78 > to this macros.
79
80 ### project_subdirs_add
81
82 This macro will search in all subfolder any `CMakeLists.txt` file. If found then
83 it will be added to your project. This could be use in an hybrid application by
84 example where the binding lay in a sub directory.
85
86 Usage :
87
88 ```cmake
89 project_subdirs_add()
90 ```
91
92 You also can specify a globbing pattern as argument to filter which folders
93 will be looked for.
94
95 To filter all directories that begin with a number followed by a dash the
96 anything:
97
98 ```cmake
99 project_subdirs_add("[0-9]-*")
100 ```