File: configure.ac

package info (click to toggle)
cppunit 1.15.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,744 kB
  • sloc: cpp: 12,695; sh: 4,280; ansic: 687; makefile: 402; xml: 58
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