File: meson.build

package info (click to toggle)
entangle 3.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,948 kB
  • sloc: ansic: 18,765; python: 846; xml: 768; sh: 86; perl: 67; makefile: 5
file content (25 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (5)
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
doc_path = join_paths(entangle_datadir, 'gtk-doc', 'html', meson.project_name())


gnome.gtkdoc(
  meson.project_name(),
  main_xml: meson.project_name() + '-docs.xml',
  src_dir: [
    backend_inc,
    frontend_inc,
  ],
  dependencies: [
    entangle_backend_dep,
    entangle_frontend_dep,
  ],
  gobject_typesfile: 'entangle.types',
  scan_args: [
    '--rebuild-sections',
    '--rebuild-types',
  ],
  mkdb_args: [
    '--output-format=xml',
  ],
  install: true,
  install_dir: doc_path
)