summaryrefslogtreecommitdiff
path: root/docs/gcr/meson.build
blob: cf6532f961d499440649f21080419966f2baa47d (plain)
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
gcr_base_content_files = [
  'non-pageable-memory.md',
  'pkcs11-configuration.md',
  'trust-store.md',
]

gcr_base_toml = configure_file(
  input: 'gcr-base.toml.in',
  output: '@BASENAME@',
  configuration: {
    'GCR_VERSION': gcr_major_version,
    'GCK_VERSION': gck_major_version,
  },
)

gcr_base_docs = custom_target('gcr-docs',
  input: gcr_gir[0],
  output: 'gcr-@0@'.format(gcr_major_version),
  command: [
    gi_docgen,
    'generate',
    '--quiet',
    '--fatal-warnings',
    '--add-include-path=@0@'.format(build_root / 'gck'),
    '--config', gcr_base_toml,
    '--output-dir=@OUTPUT@',
    '--no-namespace-dir',
    '--content-dir=@0@'.format(meson.current_source_dir()),
    '@INPUT@',
  ],
  depend_files: [ gcr_base_toml, gcr_base_content_files ],
  depends: [ gck_gir[0] ],
  build_by_default: true,
  install: true,
  install_dir: get_option('datadir') / 'doc',
)