source: libcaca/trunk/tests/Makefile.am @ 2309

Last change on this file since 2309 was 2309, checked in by Sam Hocevar, 15 years ago
  • Started libcaca unit tests.
File size: 584 bytes
Line 
1# $Id$
2
3AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I../cucul \
4              -I$(top_srcdir)/caca
5
6if USE_CPPUNIT
7cppunit_tests = cucul-test caca-test
8endif
9
10noinst_PROGRAMS = simple $(cppunit_tests)
11
12TESTS = $(noinst_PROGRAMS)
13
14simple_SOURCES = simple.c
15simple_LDADD = ../cucul/libcucul.la
16
17cucul_test_SOURCES = cucul-test.cpp canvas.cpp
18cucul_test_CXXFLAGS = $(CPPUNIT_CFLAGS)
19cucul_test_LDADD = ../cucul/libcucul.la $(CPPUNIT_LIBS)
20
21caca_test_SOURCES = caca-test.cpp driver.cpp
22caca_test_CXXFLAGS = $(CPPUNIT_CFLAGS)
23caca_test_LDADD = ../caca/libcaca.la $(CPPUNIT_LIBS)
24
Note: See TracBrowser for help on using the repository browser.