Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/unittests/Makefile.am

    r9fe36b re9c677  
    44AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
    55
    6 MENUTESTS = ActionSequenceTest
    7 
    8 TESTS = ActOnAllUnitTest AnalysisBondsUnitTests AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest LogUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest ObserverTest $(MENUTESTS)
    9 check_PROGRAMS = $(TESTS)
     6TESTS = \
     7  ActOnAllUnitTest \
     8  AnalysisBondsUnitTests \
     9  AnalysisCorrelationToPointUnitTest \
     10  AnalysisCorrelationToSurfaceUnitTest \
     11  AnalysisPairCorrelationUnitTest \
     12  BondGraphUnitTest \
     13  GSLMatrixSymmetricUnitTest \
     14  GSLMatrixUnitTest \
     15  GSLVectorUnitTest \
     16  InfoUnitTest \
     17  LinearSystemOfEquationsUnitTest \
     18  ListOfBondsUnitTest \
     19  LogUnitTest \
     20  MemoryUsageObserverUnitTest \
     21  MemoryAllocatorUnitTest \
     22  StackClassUnitTest \
     23  TesselationUnitTest \
     24  Tesselation_BoundaryTriangleUnitTest \
     25  Tesselation_InOutsideUnitTest \
     26  VectorUnitTest
     27 
     28check_PROGRAMS = $(TESTS)
    1029noinst_PROGRAMS = $(TESTS)
    1130
    1231ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
    13 ActOnAllUnitTest_LDADD = ../libmolecuilder.a
     32ActOnAllUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    1433
    1534AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
    16 AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a
     35AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    1736
    1837AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
    19 AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
     38AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    2039
    2140AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
    22 AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
     41AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    2342
    2443AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
    25 AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
     44AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    2645
    2746BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
    28 BondGraphUnitTest_LDADD = ../libmolecuilder.a
     47BondGraphUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     48
     49GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
     50GSLMatrixSymmetricUnitTest_LDADD = ../libgslwrapper.a
     51
     52GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp
     53GSLMatrixUnitTest_LDADD = ../libgslwrapper.a
     54
     55GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp
     56GSLVectorUnitTest_LDADD = ../libgslwrapper.a
     57
     58InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp
     59InfoUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     60
     61LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
     62LinearSystemOfEquationsUnitTest_LDADD = ../libgslwrapper.a ../libmolecuilder.a
    2963
    3064ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
    31 ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
     65ListOfBondsUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    3266
    3367LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
    34 LogUnitTest_LDADD = ../libmolecuilder.a
     68LogUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    3569
    3670MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
    37 MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
     71MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    3872
    3973MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
    40 MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
     74MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    4175
    4276StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
    43 StackClassUnitTest_LDADD = ../libmolecuilder.a
     77StackClassUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     78
     79TesselationUnitTest_SOURCES = tesselationunittest.cpp tesselationunittest.hpp
     80TesselationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     81
     82Tesselation_BoundaryTriangleUnitTest_SOURCES = tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
     83Tesselation_BoundaryTriangleUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     84
     85Tesselation_InOutsideUnitTest_SOURCES = tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
     86Tesselation_InOutsideUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    4487
    4588VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
    46 VectorUnitTest_LDADD = ../libmolecuilder.a
     89VectorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
    4790
    48 ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp
    49 ActionSequenceTest_LDADD = ../libmolecuilder.a ../libmenu.a
    50 
    51 ObserverTest_SOURCES = ObserverTest.cpp ObserverTest.hpp
    52 ObserverTest_LDADD = ../libmolecuilder.a
    5391
    5492#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracChangeset for help on using the changeset viewer.