File: meson.build

package info (click to toggle)
gnome-shell 49.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,540 kB
  • sloc: javascript: 74,965; ansic: 66,151; xml: 1,797; sh: 919; python: 666; makefile: 51
file content (25 lines) | stat: -rw-r--r-- 773 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
shell_toml = configure_file(
  input: 'shell.toml.in',
  output: 'shell.toml',
  configuration: doc_conf
)

custom_target('shell-doc',
  input: [shell_toml, libshell_gir[0]],
  output: 'shell',
  command: [
    gidocgen,
    'generate',
    gi_docgen_common_args,
    '--add-include-path=@0@'.format(meson.current_build_dir() / '../../../src'),
    '--add-include-path=@0@'.format(meson.current_build_dir() / '../../../src/st'),
    '--add-include-path=@0@'.format(mutter_dep.get_variable('girdir')),
    '--add-include-path=@0@'.format(meson.current_build_dir() / '../../../subprojects/gvc'),
    '--config=@INPUT0@',
    '--output-dir=@OUTPUT@',
    '--content-dir=@0@'.format(meson.current_source_dir()),
    '@INPUT1@',
  ],
  install: true,
  install_dir: docs_dir,
)