Formalize the build process and integrate autotools

This commit is contained in:
Bradlee Speice
2012-06-22 13:22:16 -04:00
parent 0a10dc798c
commit df26d0a95c
24 changed files with 11786 additions and 123 deletions

46
configure.ac Normal file
View File

@ -0,0 +1,46 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.62)
AC_INIT(libcvautomation, 0.1, bspeice@uncc.edu)
AM_INIT_AUTOMAKE
AC_CONFIG_SUBDIRS([libcvautomation/] [examples/])
# Checks for programs.
AC_PROG_CC
AC_PROG_LIBTOOL
AM_PROG_LIBTOOL
# Checks for libraries.
#AC_CHECK_LIB(cv, cvMatchTemplate)
#AC_CHECK_LIB(cv, cvMinMaxLoc)
#AC_CHECK_LIB(X11, XGetImage)
# Checks for header files.
AC_PATH_X
#Headers needed for libcvautomation
#AC_CHECK_HEADER(stdio.h)
#AC_CHECK_HEADER(opencv/cv.h)
#AC_CHECK_HEADER(opencv/highgui.h)
#AC_CHECK_HEADER(X11/Xlib.h)
#AC_CHECK_HEADER(X11/Xutil.h)
PKG_CHECK_MODULES([OpenCV], [opencv >= 1.0.0])
PKG_CHECK_MODULES([X11], [x11 >= 1.0.3])
AC_ARG_WITH(examples, [ --with-examples build example programs '['default=yes']'])
AM_CONDITIONAL(BUILD_EXAMPLES, [test "$with_examples" != "no"])
if test "$with_examples" != "no"; then
#Headers needed for cva-match
echo building examples
AC_CHECK_HEADERS([limits.h stdlib.h unistd.h])
fi
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_FUNC_MALLOC
AC_OUTPUT([Makefile] [libcvautomation/Makefile] [examples/Makefile])