mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
They allow distrubtions to check whether libfprint continues working as expected, in different contexts.
29 lines
488 B
Meson
29 lines
488 B
Meson
|
|
examples = [
|
|
'enroll',
|
|
'identify',
|
|
'img-capture',
|
|
'manage-prints',
|
|
'verify',
|
|
]
|
|
|
|
foreach example: examples
|
|
executable(example,
|
|
[ example + '.c', 'storage.c', 'utilities.c' ],
|
|
dependencies: [
|
|
libfprint_dep,
|
|
glib_dep,
|
|
],
|
|
)
|
|
endforeach
|
|
|
|
executable('cpp-test',
|
|
'cpp-test.cpp',
|
|
dependencies: libfprint_dep,
|
|
)
|
|
|
|
if installed_tests
|
|
install_subdir('prints',
|
|
install_dir: installed_tests_testdir)
|
|
endif
|