File: meson.build

package info (click to toggle)
libnotify 0.8.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 844 kB
  • sloc: xml: 8,298; ansic: 3,228; sh: 63; python: 23; makefile: 22; javascript: 6
file content (40 lines) | stat: -rw-r--r-- 1,053 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
32
33
34
35
36
37
38
39
40
api_version_major = '0'
expand_content_md_files = []

toml_data = configuration_data()
toml_data.set('VERSION', meson.project_version())

libnotify_toml = configure_file(
  input: 'libnotify.toml.in',
  output: 'libnotify.toml',
  configuration: toml_data
)

dependency('gi-docgen', version: '>= 2021.7',
           fallback: ['gi-docgen', 'dummy_dep'],
           native: true,
           required: get_option('gtk_doc'))

gidocgen = find_program('gi-docgen')

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

custom_target('libnotify-doc',
  input: [ libnotify_toml, libnotify_gir[0] ],
  output: 'libnotify-@0@'.format(api_version_major),
  command: [
    gidocgen,
    'generate',
    '--quiet',
    '--add-include-path=@0@'.format(meson.current_build_dir() / '../../libnotify'),
    '--config=@INPUT0@',
    '--output-dir=@OUTPUT@',
    '--no-namespace-dir',
    '--content-dir=@0@'.format(meson.current_source_dir()),
    '@INPUT1@',
  ],
  depend_files: [ expand_content_md_files ],
  build_by_default: true,
  install: true,
  install_dir: docs_dir,
)