summaryrefslogtreecommitdiff
path: root/docs/reference/meson.build
blob: 71053090aacdebeaf051cf6be5825fdb08d89300 (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
28
29
30
31
32
33
34
35
36
37
38
39
glib_prefix = glib_dep.get_pkgconfig_variable('prefix')
glib_docpath = join_paths(glib_prefix, 'share', 'gtk-doc', 'html')
clutter_prefix = clutter_dep.get_pkgconfig_variable('prefix')
clutter_docpath = join_paths(clutter_prefix, 'share', 'gtk-doc', 'html')
docpath = join_paths(get_option('datadir'), 'gtk-doc', 'html')

ignored_headers = [
  'champlain-debug.h',
  'champlain-enum-types.h',
  'champlain-private.h',
  'champlain.h',
  'champlain-marshal.h',
  'champlain-defines.h',
  'champlain-features.h',
  'champlain-adjustment.h',
  'champlain-kinetic-scroll-view.h',
  'champlain-viewport.h'
]

if get_option('memphis')
 ignored_headers += 'champlain-memphis-renderer.h'
endif

gnome.gtkdoc(
  'libchamplain',
  main_sgml: 'libchamplain-docs.sgml',
  src_dir: libchamplain_dir,
  dependencies: libchamplain_deps,
  scan_args: ['--rebuild-types', '--deprecated-guards="GTK_DISABLE_DEPRECATED"'],
  ignore_headers: ignored_headers,
  fixxref_args: [
    '--html-dir=@0@'.format(docpath),
    '--extra-dir=@0@'.format(join_paths(glib_docpath, 'glib')),
    '--extra-dir=@0@'.format(join_paths(glib_docpath, 'gobject')),
    '--extra-dir=@0@'.format(join_paths(glib_docpath, 'gio')),
    '--extra-dir=@0@'.format(clutter_docpath),
  ],
  install: true
)