File: meson.build

package info (click to toggle)
policykit-1 126-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,584 kB
  • sloc: ansic: 19,434; xml: 3,606; sh: 534; python: 111; javascript: 83; makefile: 48; exp: 37; perl: 11
file content (23 lines) | stat: -rw-r--r-- 508 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
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