source: molecuilder/src/unittests/Makefile.am@ 5f9f8b

Last change on this file since 5f9f8b was 5f9f8b, checked in by Frederik Heber <heber@…>, 16 years ago

Removed libmolecuilder linking from unit tests where only some few modules were needed.

  • Property mode set to 100644
File size: 2.1 KB
Line 
1INCLUDES = -I$(top_srcdir)/src
2
3AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
4AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
5
6TESTS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest
7check_PROGRAMS = $(TESTS)
8noinst_PROGRAMS = $(TESTS)
9
10ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp
11
12AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
13AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
14
15AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
16AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
17
18AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
19AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
20
21BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
22BondGraphUnitTest_LDADD = ../libmolecuilder.a
23
24ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
25ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
26
27MemoryAllocatorUnitTest_SOURCES = defs.hpp ../helpers.cpp ../helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp
28
29MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp verbose.hpp
30
31StackClassUnitTest_SOURCES = memoryallocator.hpp stackclass.hpp stackclassunittest.cpp stackclassunittest.hpp
32
33VectorUnitTest_SOURCES = defs.hpp ../helpers.cpp helpers.hpp ../leastsquaremin.cpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.hpp ../vector.cpp verbose.hpp ../verbose.cpp
34
35
36#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.