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