source: molecuilder/src/unittests/Makefile.am@ dbc152

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

Refactored StackClass with respect to tickets #38, #4.

  • #38 make const what is const
  • #4 shorten constructors
  • StackClass::TestImplementation() has been shifted into a unit test stackclassunittest.[ch]pp

Signed-off-by: Frederik Heber <heber@…>

  • 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 ListOfBondsUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest
7check_PROGRAMS = $(TESTS)
8noinst_PROGRAMS = $(TESTS)
9
10ActOnAllUnitTest_SOURCES = ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp
11ActOnAllUnitTest_LDADD = ../libmolecuilder.a
12
13AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
14AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
15
16AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
17AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
18
19AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
20AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
21
22ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
23ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
24
25MemoryAllocatorUnitTest_SOURCES = defs.hpp helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp
26MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
27
28MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp verbose.hpp
29MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
30
31StackClassUnitTest_SOURCES = stackclass.hpp stackclassunittest.cpp stackclassunittest.hpp
32StackClassUnitTest_LDADD = ../libmolecuilder.a
33
34VectorUnitTest_SOURCES = defs.hpp helpers.hpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.hpp verbose.hpp
35VectorUnitTest_LDADD = ../libmolecuilder.a
36
37
38#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.