summaryrefslogtreecommitdiff
path: root/examples/money/configure.ac
blob: a6586e7411ef462817ba8c76bc1800d3af4205bc (plain)
1
2
3
4
5
6
7
8
9
10
dnl Process this file with autoconf to produce a configure script.
dnl Don't forget to run `aclocal -I /usr/local/share/aclocal` before
dnl running autoconf! This is required for PKG_CHECK_MODULES to work.
AC_INIT(Makefile.am)
AM_INIT_AUTOMAKE(cppunit-cookbook,1.6.2)
PKG_CHECK_MODULES([CPPUNIT], [cppunit >= 1.11.6])
AC_PROG_CXX
AC_PROG_CC
AC_PROG_INSTALL
AC_OUTPUT(Makefile)