File: meson.build

package info (click to toggle)
sysprof 49.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,992 kB
  • sloc: ansic: 73,989; xml: 171; cpp: 49; sh: 32; makefile: 31; javascript: 6
file content (44 lines) | stat: -rw-r--r-- 1,019 bytes parent folder | download | duplicates (3)
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
40
41
42
43
44
if not get_option('introspection').enabled()
  error('-Ddocs=true requires -Dintrospection=enabled')
endif

toml_conf = configuration_data()
toml_conf.set('version', meson.project_version())

gidocgen = find_program('gi-docgen')

gidocgen_common_args = [
  '--quiet',
  '--no-namespace-dir',
]

if get_option('werror')
  gidocgen_common_args += ['--fatal-warnings']
endif

docs_dir = get_option('datadir') / 'doc'

source_toml = configure_file(
  input: 'Sysprof.toml.in',
  output: 'Sysprof.toml',
  configuration: toml_conf,
  install: true,
  install_dir: docs_dir / 'sysprof-@0@'.format(soname_major_version),
)

custom_target('sysprof-doc',
  input: [ source_toml, libsysprof_gir[0] ],
  output: 'sysprof-@0@'.format(soname_major_version),
  command: [
    gidocgen,
    'generate',
    gidocgen_common_args,
    '--config=@INPUT0@',
    '--output-dir=@OUTPUT@',
    '--content-dir=@0@'.format(meson.current_source_dir()),
    '@INPUT1@',
  ],
  build_by_default: true,
  install: true,
  install_dir: docs_dir,
)