fb5854213a
It was the only main action left in the examples, we use the gallery from the device if available, otherwise the local one.
23 lines
387 B
Meson
23 lines
387 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,
|
|
)
|