summaryrefslogtreecommitdiff
path: root/doc/meson.build
blob: cfaec180c364859a443d62bad86157f5327a703d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
entities = configuration_data()
entities.set('VERSION', meson.project_version())
configure_file(input: 'version.xml.in',
               output: 'version.xml', configuration:
               entities)

gnome.gtkdoc('gupnp',
             main_xml : 'gupnp-docs.xml',
             src_dir : [join_paths(meson.source_root(), 'libgupnp'),
                        join_paths(meson.build_root(), 'libgupnp')],
             dependencies : libgupnp,
             ignore_headers : [
                 'gena-protocol.h',
                 'xml-util.h',
                 'gvalue-util.h',
                 'http-headers.h',
                 'gupnp-context-private.h',
                 'gupnp-linux-context-manager.h',
                 'gupnp-network-manager.h',
                 'gupnp-unix-context-manager.h',
                 'gupnp-device-info-private.h',
                 'gupnp-error-private.h',
                 'gupnp-resource-factory-private.h',
                 'gupnp-service-introspection-private.h',
                 'gupnp-types-private.h'
             ],
             install : true)