mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-09 04:13:33 +02:00
build: Add meson build system
Reuse the generated dbus interface .xml files from fprintd to avoid unnecessary copies.
This commit is contained in:
committed by
Bastien Nocera
parent
5c5849dca7
commit
eb6dbb6953
13
tests/pam/services/meson.build
Normal file
13
tests/pam/services/meson.build
Normal file
@ -0,0 +1,13 @@
|
||||
# Meson doesn't allow to have configure_file's as targets we depend on... Meh!
|
||||
pam_service_file = custom_target('pam_test_service_file',
|
||||
output: 'null',
|
||||
command: 'true',
|
||||
depends: pam_fprintd,
|
||||
depend_files: configure_file(
|
||||
input: 'fprintd-pam-test.in',
|
||||
output: 'fprintd-pam-test',
|
||||
configuration: configuration_data({
|
||||
'FPRINTDPAMPATH': pam_fprintd.full_path(),
|
||||
}),
|
||||
),
|
||||
)
|
||||
Reference in New Issue
Block a user