File: meson.build

package info (click to toggle)
uhttpmock 0.11.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 400 kB
  • sloc: ansic: 2,653; xml: 229; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 533 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
configure_file(
  input: 'version.xml.in',
  output: '@BASENAME@',
  configuration: {
    'UHM_VERSION_MAJOR': uhm_major_version,
    'UHM_VERSION_MINOR': uhm_minor_version,
    'UHM_VERSION_MICRO': uhm_micro_version,
  },
)

gnome.gtkdoc('libuhttpmock',
  module_version: uhm_api_version,
  main_xml: 'libuhttpmock-' + uhm_api_version + '-docs.xml',
  src_dir: include_directories('../'),
  scan_args: [
    '--rebuild-types',
    '--deprecated-guards="LIBUHTTPMOCK_DISABLE_DEPRECATED"',
  ],
  dependencies: libuhm_internal_dep,
)