source: molecuilder/src/unittests/Makefile.am@ 96d8dc

Last change on this file since 96d8dc was 96d8dc, checked in by Saskia Metzler <metzler@…>, 16 years ago

Ticket 43 Create a logging class

The verbosity level can now be handeled globally by setVerbosity().

  • Property mode set to 100644
File size: 2.9 KB
Line 
1INCLUDES = -I$(top_srcdir)/src
2
3noinst_PROGRAMS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest LogUnitTest MemoryAllocatorUnitTest MemoryUsageObserverUnitTest VectorUnitTest
4
5TESTS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest VectorUnitTest
6check_PROGRAMS = $(TESTS)
7
8ActOnAllUnitTest_SOURCES = ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp
9ActOnAllUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
10ActOnAllUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
11ActOnAllUnitTest_LDADD = ../libmolecuilder.a
12
13AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
14AnalysisCorrelationToPointUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
15AnalysisCorrelationToPointUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
16AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
17
18AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
19AnalysisCorrelationToSurfaceUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
20AnalysisCorrelationToSurfaceUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
21AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
22
23AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
24AnalysisPairCorrelationUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
25AnalysisPairCorrelationUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
26AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
27
28VectorUnitTest_SOURCES = defs.hpp helpers.hpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.hpp verbose.hpp
29VectorUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
30VectorUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
31VectorUnitTest_LDADD = ../libmolecuilder.a
32
33MemoryAllocatorUnitTest_SOURCES = defs.hpp helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp
34MemoryAllocatorUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS) -I..
35MemoryAllocatorUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
36MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
37
38MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp verbose.hpp
39MemoryUsageObserverUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
40MemoryUsageObserverUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
41MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
42
43LogUnitTest_SOURCES = ../errorLogger.cpp ../errorLogger.hpp ../log.cpp ../log.hpp ../logger.cpp ../logger.hpp logunittest.cpp logunittest.hpp
44LogUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
45LogUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
46LogUnitTest_LDADD = ../libmolecuilder.a
Note: See TracBrowser for help on using the repository browser.