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

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

Added initial analysis_bonds.cpp and unit test for Analysis of bonds.

  • analysis_bonds.cpp shall contain bond analysis tools, such as mean bond length, bond numbers, ...
  • unit test for it is in place, copied from bondgraphunittest.cpp, as we will need a bond graph anyway.
  • Makefile.am has nor ANALYSISSOURCE and ...HEADER definitions and above is added.
  • unittests/Makefile.am has unit test incorporated.
  • make check runs fine.
  • Property mode set to 100644
File size: 2.2 KB
Line 
1INCLUDES = -I$(top_srcdir)/src
2
3AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
4AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
5
6TESTS = ActOnAllUnitTest AnalysisBondsUnitTests AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest LogUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest
7check_PROGRAMS = $(TESTS)
8noinst_PROGRAMS = $(TESTS)
9
10ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
11ActOnAllUnitTest_LDADD = ../libmolecuilder.a
12
13AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
14AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a
15
16AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
17AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
18
19AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
20AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
21
22AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
23AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
24
25BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
26BondGraphUnitTest_LDADD = ../libmolecuilder.a
27
28ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
29ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
30
31LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
32LogUnitTest_LDADD = ../libmolecuilder.a
33
34MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
35MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
36
37MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
38MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
39
40StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
41StackClassUnitTest_LDADD = ../libmolecuilder.a
42
43VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
44VectorUnitTest_LDADD = ../libmolecuilder.a
45
46
47#AUTOMAKE_OPTIONS = parallel-tests
48
Note: See TracBrowser for help on using the repository browser.