Changes in src/unittests/Makefile.am [9fe36b:63c1f6]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/Makefile.am
r9fe36b r63c1f6 4 4 AM_CXXFLAGS = $(CPPUNIT_CFLAGS) 5 5 6 MENUTESTS = ActionSequenceTest 6 MENUTESTS = ActionSequenceTest 7 7 8 TESTS = ActOnAllUnitTest AnalysisBondsUnitTests AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest LogUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest ObserverTest $(MENUTESTS) 8 TESTS = \ 9 ActOnAllUnitTest \ 10 AnalysisBondsUnitTests \ 11 AnalysisCorrelationToPointUnitTest \ 12 AnalysisCorrelationToSurfaceUnitTest \ 13 AnalysisPairCorrelationUnitTest \ 14 BondGraphUnitTest \ 15 GSLMatrixSymmetricUnitTest \ 16 GSLMatrixUnitTest \ 17 GSLVectorUnitTest \ 18 InfoUnitTest \ 19 LinearSystemOfEquationsUnitTest \ 20 ListOfBondsUnitTest \ 21 LogUnitTest \ 22 MemoryUsageObserverUnitTest \ 23 MemoryAllocatorUnitTest \ 24 StackClassUnitTest \ 25 TesselationUnitTest \ 26 Tesselation_BoundaryTriangleUnitTest \ 27 Tesselation_InOutsideUnitTest \ 28 VectorUnitTest \ 29 ObserverTest \ 30 ${MENUTESTS} 31 32 9 33 check_PROGRAMS = $(TESTS) 10 34 noinst_PROGRAMS = $(TESTS) 11 35 12 36 ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp 13 ActOnAllUnitTest_LDADD = ../libmolecuilder.a 37 ActOnAllUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 14 38 15 39 AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp 16 AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a 40 AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a ../libgslwrapper.a 17 41 18 42 AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp 19 AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a 43 AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 20 44 21 45 AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp 22 AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a 46 AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 23 47 24 48 AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp 25 AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a 49 AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 26 50 27 51 BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp 28 BondGraphUnitTest_LDADD = ../libmolecuilder.a 52 BondGraphUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 53 54 GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp 55 GSLMatrixSymmetricUnitTest_LDADD = ../libgslwrapper.a 56 57 GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp 58 GSLMatrixUnitTest_LDADD = ../libgslwrapper.a 59 60 GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp 61 GSLVectorUnitTest_LDADD = ../libgslwrapper.a 62 63 InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp 64 InfoUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 65 66 LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp 67 LinearSystemOfEquationsUnitTest_LDADD = ../libgslwrapper.a ../libmolecuilder.a 29 68 30 69 ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp 31 ListOfBondsUnitTest_LDADD = ../libmolecuilder.a 70 ListOfBondsUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 32 71 33 72 LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp 34 LogUnitTest_LDADD = ../libmolecuilder.a 73 LogUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 35 74 36 75 MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp 37 MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a 76 MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 38 77 39 78 MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp 40 MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a 79 MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 41 80 42 81 StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp 43 StackClassUnitTest_LDADD = ../libmolecuilder.a 82 StackClassUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 83 84 TesselationUnitTest_SOURCES = tesselationunittest.cpp tesselationunittest.hpp 85 TesselationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 86 87 Tesselation_BoundaryTriangleUnitTest_SOURCES = tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp 88 Tesselation_BoundaryTriangleUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 89 90 Tesselation_InOutsideUnitTest_SOURCES = tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp 91 Tesselation_InOutsideUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 44 92 45 93 VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp 46 VectorUnitTest_LDADD = ../libmolecuilder.a 94 VectorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a 47 95 48 96 ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp 49 ActionSequenceTest_LDADD = ../libmolecuilder.a ../libmenu.a97 ActionSequenceTest_LDADD = ../libmolecuilder.a 50 98 51 99 ObserverTest_SOURCES = ObserverTest.cpp ObserverTest.hpp
Note:
See TracChangeset
for help on using the changeset viewer.