File: meson.build

package info (click to toggle)
nemo 6.6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,100 kB
  • sloc: ansic: 128,108; xml: 1,560; python: 1,453; sh: 57; makefile: 20
file content (21 lines) | stat: -rw-r--r-- 560 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

docConf = configuration_data()
docConf.set('NEMO_EXTENSION_VERSION_INFO', NEMO_EXTENSION_VERSION_INFO)

configure_file(
  input : 'version.xml.in',
  output: 'version.xml',
  configuration: docConf
)

gnome.gtkdoc('libnemo-extension',
  main_xml: 'libnemo-extension-docs.xml',
  src_dir: join_paths(meson.project_source_root(), 'libnemo-extension'),
  dependencies: nemo_extension,
  install: true,
  gobject_typesfile: 'libnemo-extension.types',
  install_dir: 'libnemo-extension',
  scan_args: [
    '--rebuild-types',
    '--ignore-headers="config.h"' ]
)