Add 'verify' example skeleton

This will become an example program to enroll a fingerprint and then
verify a finger against it.
This commit is contained in:
Daniel Drake
2007-10-08 17:15:21 +01:00
parent 2c06a4ebfa
commit f81aa47a19
5 changed files with 89 additions and 3 deletions

View File

@@ -24,8 +24,15 @@ PKG_CHECK_MODULES(GLIB, "glib-2.0")
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
# Examples build
AC_ARG_ENABLE([examples-build], [AS_HELP_STRING([--enable-examples-build],
[build example applications (default n)])],
[build_examples=$enableval],
[build_examples='no'])
AM_CONDITIONAL([BUILD_EXAMPLES], [test "x$build_examples" != "xno"])
AC_DEFINE([API_EXPORTED], [__attribute__((visibility("default")))], [Default visibility])
AC_CONFIG_FILES([Makefile] [libfprint/Makefile])
AC_CONFIG_FILES([Makefile] [libfprint/Makefile] [examples/Makefile])
AC_OUTPUT