On Fri, Jan 11, 2019 at 12:25 PM <
inigom...@gmail.com> wrote:
> This procedure is done in the following way:
>
> doc_module = 'libqmi-glib'
> name = doc_module + '-sections.txt'
>
> sections_txt = custom_target(
> name,
> input: ['libqmi-glib-common.sections'] + gen_sections,
> output: name,
> console: true,
> command: [find_program('cat'), '@INPUT@'],
> )
>
> `gen_sections` is a set of generated files by using a previous `custom_target` and `libqmi-glib-common.sections` is an existing file which is also concatenated into a file called `libqmi-glib-sections.txt`.