256c7cea07
These examples have not been ported. In addition, they are also not very useful these days, as the demo application offers a much nicer view to view images from a sensor.
19 lines
532 B
Meson
19 lines
532 B
Meson
|
|
examples = [ 'enroll', 'verify', 'manage-prints' ]
|
|
foreach example: examples
|
|
executable(example,
|
|
[example + '.c', 'storage.c'],
|
|
dependencies: [libfprint_dep, glib_dep],
|
|
include_directories: [
|
|
root_inc,
|
|
],
|
|
c_args: common_cflags)
|
|
endforeach
|
|
|
|
executable('cpp-test',
|
|
'cpp-test.cpp',
|
|
dependencies: libfprint_dep,
|
|
include_directories: [
|
|
root_inc,
|
|
],
|
|
c_args: common_cflags)
|