File: meson.build

package info (click to toggle)
umockdev 0.19.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,340 kB
  • sloc: ansic: 5,401; sh: 276; python: 262; xml: 43; makefile: 10
file content (16 lines) | stat: -rw-r--r-- 524 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version_xml = configure_file(
  input: 'version.xml.in',
  output: 'version.xml',
  configuration: conf)

gnome = import('gnome')
gnome.gtkdoc('umockdev',
  main_xml: 'umockdev-docs.xml',
  src_dir: [meson.build_root()],
  content_files: [version_xml],
  gobject_typesfile: 'umockdev.types',
  scan_args: ['--ignore-decorators', 'VALA_EXTERN'],
  ignore_headers: ['uevent_sender.h', 'cros_ec.h', 'ioctl_tree.h', 'debug.h'],
  dependencies: [glib, gobject, declare_dependency(link_with : [umockdev_lib])],
  install: true,
)