File: meson.build

package info (click to toggle)
mutter 43.8-0%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 32,704 kB
  • sloc: ansic: 334,613; xml: 2,068; python: 1,429; sh: 208; ruby: 167; perl: 120; makefile: 67; javascript: 11
file content (31 lines) | stat: -rw-r--r-- 806 bytes parent folder | download | duplicates (2)
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

clutter_toml = configure_file(
  input: 'clutter.toml.in',
  output: 'clutter.toml',
  configuration: toml_conf,
  install: true,
  install_dir: docs_dir / 'clutter',
)

custom_target('clutter-doc',
  input: [ clutter_toml, libmutter_clutter_gir[0] ],
  output: 'clutter',
  command: [
    gidocgen,
    'generate',
    gidocgen_common_args,
    '--add-include-path=@0@'.format(meson.current_build_dir() / '../../../cogl/cogl'),
    '--add-include-path=@0@'.format(meson.current_build_dir() / '../../../cogl/cogl-pango'),
    '--config=@INPUT0@',
    '--output-dir=@OUTPUT@',
    '--content-dir=@0@'.format(meson.current_source_dir()),
    '@INPUT1@',
  ],
  depends: [
    libmutter_cogl_pango_gir[0],
    libmutter_cogl_gir[0],
  ],
  build_by_default: true,
  install: true,
  install_dir: docs_dir,
)