059fc5ef7d
These examples will stop working with the following API changes. Updated examples may be re-enabled again later.
29 lines
874 B
Meson
29 lines
874 B
Meson
|
|
examples = [ 'verify_live', 'enroll', 'verify', 'img_capture' ]
|
|
foreach example: examples
|
|
executable(example,
|
|
[example + '.c', 'storage.c'],
|
|
dependencies: [libfprint_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)
|
|
|
|
# if get_option('x11-examples')
|
|
# executable('img_capture_continuous',
|
|
# 'img_capture_continuous.c',
|
|
# dependencies: [ libfprint_dep, xv_dep, x11_dep ],
|
|
# include_directories: [
|
|
# root_inc,
|
|
# ],
|
|
# c_args: common_cflags)
|
|
# endif
|