File: meson.build

package info (click to toggle)
nemo-python 5.6.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 384 kB
  • sloc: xml: 1,732; ansic: 795; python: 157; makefile: 9
file content (22 lines) | stat: -rw-r--r-- 397 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
21
22

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

configure_file(
  input : 'entities.docbook.in',
  output: 'entities.docbook',
  configuration: docConf
)


content_files = [
    'entities.docbook.in'
]

gnome.gtkdoc('nemo-python',
  main_xml: 'nemo-python-ref.xml',
  src_dir: 'src',
  content_files: content_files,
  install: true,
  install_dir: 'nemo-python'
)