File: configure.ac

package info (click to toggle)
cppunit 1.13.2-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,980 kB
  • ctags: 3,579
  • sloc: cpp: 18,338; sh: 14,983; ansic: 3,011; makefile: 423; xml: 58; csh: 6
file content (24 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
AC_INIT(cppunit-test-example,1.0)
AM_INIT_AUTOMAKE

AC_PROG_CXX
AC_PROG_LIBTOOL

# Locate CppUnit (minimum version 1.8.0) for testing.  
AM_PATH_CPPUNIT(1.8.0)

# You can set up an automake conditional and use it to conditionally
# build cppunit-using test programs.
AM_CONDITIONAL(HAVE_CPPUNIT, test "$CPPUNIT_LIBS")

AC_CONFIG_FILES([
Makefile
ClockerPlugIn/Makefile
DumperPlugIn/Makefile
cppunittest/Makefile
hierarchy/Makefile
money/Makefile
simple/Makefile
])
AC_OUTPUT