source: molecuilder/src/unittests/Makefile.am@ 3d4969

Last change on this file since 3d4969 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
RevLine 
[afbb6c0]1INCLUDES = -I$(top_srcdir)/src
2
[2e6aa1]3AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
4AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
[53f32e]5
[341850]6TESTS = ActOnAllUnitTest AnalysisBondsUnitTests AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest LogUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest
[53f32e]7check_PROGRAMS = $(TESTS)
[2e6aa1]8noinst_PROGRAMS = $(TESTS)
[afbb6c0]9
[543ce4]10ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
11ActOnAllUnitTest_LDADD = ../libmolecuilder.a
[e71890]12
[341850]13AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
14AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a
15
[57cfb7]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
[e71890]24
[5f697c]25BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
[bc8155]26BondGraphUnitTest_LDADD = ../libmolecuilder.a
27
[872b51]28ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
29ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
30
[ec70ec]31LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
32LogUnitTest_LDADD = ../libmolecuilder.a
33
[543ce4]34MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
35MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
[53f32e]36
[543ce4]37MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
38MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
[2e6aa1]39
[543ce4]40StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
41StackClassUnitTest_LDADD = ../libmolecuilder.a
[dbc152]42
[543ce4]43VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
44VectorUnitTest_LDADD = ../libmolecuilder.a
[dbc152]45
46
[2e6aa1]47#AUTOMAKE_OPTIONS = parallel-tests
[ec70ec]48
Note: See TracBrowser for help on using the repository browser.