File: meson.build

package info (click to toggle)
policykit-1 122-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,280 kB
  • sloc: ansic: 20,980; sh: 12,380; xml: 4,321; cpp: 1,031; makefile: 173; python: 124; javascript: 83; sed: 16; perl: 11
file content (23 lines) | stat: -rw-r--r-- 508 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
23
pk_api_docpath = pk_prefix / gnome.gtkdoc_html_dir(pk_api_name)

enable_man = get_option('man')
if enable_man
  subdir('man')
endif

enable_gtk_doc = get_option('gtk_doc')
if enable_gtk_doc
  content_files += configure_file(
    input: 'extensiondir.xml.in',
    output: '@BASENAME@',
    configuration: {'libdir': pk_prefix / pk_libdir},
  )

  content_files += configure_file(
    input: 'version.xml.in',
    output: '@BASENAME@',
    configuration: {'VERSION': pk_version},
  )

  subdir('polkit')
endif