mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2025-12-20 17:30:05 +01:00
27 lines
609 B
Meson
27 lines
609 B
Meson
subdir('dbus')
|
|
|
|
version_file = configure_file(
|
|
input: 'version.xml.in',
|
|
output: 'version.xml',
|
|
configuration: configuration_data({
|
|
'VERSION': meson.project_version(),
|
|
}),
|
|
)
|
|
|
|
gnome.gtkdoc(meson.project_name(),
|
|
main_xml: 'fprintd-docs.xml',
|
|
src_dir: meson.source_root() / 'src',
|
|
dependencies: [
|
|
declare_dependency(
|
|
sources: dbus_interfaces_refs,
|
|
link_with: libfprintd_private,
|
|
),
|
|
],
|
|
content_files: [
|
|
version_file,
|
|
dbus_interfaces_refs,
|
|
],
|
|
ignore_headers: [
|
|
'config.h',
|
|
],
|
|
install: true)
|