Changes in src/unittests/Makefile.am [63c1f6:9fe36b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/Makefile.am
r63c1f6 r9fe36b 4 4 AM_CXXFLAGS = $(CPPUNIT_CFLAGS) 5 5 6 MENUTESTS = ActionSequenceTest 6 MENUTESTS = ActionSequenceTest 7 7 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 8 TESTS = ActOnAllUnitTest AnalysisBondsUnitTests AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest LogUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest ObserverTest $(MENUTESTS) 33 9 check_PROGRAMS = $(TESTS) 34 10 noinst_PROGRAMS = $(TESTS) 35 11 36 12 ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp 37 ActOnAllUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a13 ActOnAllUnitTest_LDADD = ../libmolecuilder.a 38 14 39 15 AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp 40 AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a ../libgslwrapper.a16 AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a 41 17 42 18 AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp 43 AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a19 AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a 44 20 45 21 AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp 46 AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a22 AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a 47 23 48 24 AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp 49 AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a25 AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a 50 26 51 27 BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp 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 28 BondGraphUnitTest_LDADD = ../libmolecuilder.a 68 29 69 30 ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp 70 ListOfBondsUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a31 ListOfBondsUnitTest_LDADD = ../libmolecuilder.a 71 32 72 33 LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp 73 LogUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a34 LogUnitTest_LDADD = ../libmolecuilder.a 74 35 75 36 MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp 76 MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a37 MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a 77 38 78 39 MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp 79 MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a40 MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a 80 41 81 42 StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp 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 43 StackClassUnitTest_LDADD = ../libmolecuilder.a 92 44 93 45 VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp 94 VectorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a46 VectorUnitTest_LDADD = ../libmolecuilder.a 95 47 96 48 ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp 97 ActionSequenceTest_LDADD = ../libmolecuilder.a 49 ActionSequenceTest_LDADD = ../libmolecuilder.a ../libmenu.a 98 50 99 51 ObserverTest_SOURCES = ObserverTest.cpp ObserverTest.hpp
Note:
See TracChangeset
for help on using the changeset viewer.