[b9907c] | 1 | INCLUDES = -I$(top_srcdir)/src
|
---|
| 2 |
|
---|
[831a14] | 3 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
---|
| 4 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
---|
[be90f1] | 5 |
|
---|
[147339] | 6 | MENUTESTS = ActionSequenceTest
|
---|
| 7 |
|
---|
[9fb860] | 8 | TESTS = \
|
---|
| 9 | ActOnAllUnitTest \
|
---|
| 10 | AnalysisBondsUnitTests \
|
---|
| 11 | AnalysisCorrelationToPointUnitTest \
|
---|
| 12 | AnalysisCorrelationToSurfaceUnitTest \
|
---|
| 13 | AnalysisPairCorrelationUnitTest \
|
---|
| 14 | BondGraphUnitTest \
|
---|
[fc3b67] | 15 | GSLMatrixSymmetricUnitTest \
|
---|
| 16 | GSLMatrixUnitTest \
|
---|
[9fb860] | 17 | GSLVectorUnitTest \
|
---|
| 18 | InfoUnitTest \
|
---|
[f60610] | 19 | LinearSystemOfEquationsUnitTest \
|
---|
[9fb860] | 20 | ListOfBondsUnitTest \
|
---|
| 21 | LogUnitTest \
|
---|
| 22 | MemoryUsageObserverUnitTest \
|
---|
| 23 | MemoryAllocatorUnitTest \
|
---|
| 24 | StackClassUnitTest \
|
---|
| 25 | TesselationUnitTest \
|
---|
[e9c677] | 26 | Tesselation_BoundaryTriangleUnitTest \
|
---|
| 27 | Tesselation_InOutsideUnitTest \
|
---|
[9fb860] | 28 | VectorUnitTest
|
---|
[04b6f9] | 29 |
|
---|
[9fb860] | 30 |
|
---|
[04b6f9] | 31 | check_PROGRAMS = $(TESTS) ${MENUTESTS}
|
---|
| 32 | noinst_PROGRAMS = $(TESTS) ${MENUTESTS}
|
---|
[b9907c] | 33 |
|
---|
[e138de] | 34 | ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
---|
[31a6af] | 35 | ActOnAllUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[c111db] | 36 |
|
---|
[96c961] | 37 | AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
|
---|
[31a6af] | 38 | AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[96c961] | 39 |
|
---|
[c4d4df] | 40 | AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
---|
[31a6af] | 41 | AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[c4d4df] | 42 |
|
---|
| 43 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
---|
[31a6af] | 44 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[c4d4df] | 45 |
|
---|
| 46 | AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
---|
[31a6af] | 47 | AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[c111db] | 48 |
|
---|
[b70721] | 49 | BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
|
---|
[31a6af] | 50 | BondGraphUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[46ea3b] | 51 |
|
---|
[9fb860] | 52 | GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
|
---|
| 53 | GSLMatrixSymmetricUnitTest_LDADD = ../libgslwrapper.a
|
---|
| 54 |
|
---|
| 55 | GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp
|
---|
| 56 | GSLMatrixUnitTest_LDADD = ../libgslwrapper.a
|
---|
| 57 |
|
---|
| 58 | GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp
|
---|
| 59 | GSLVectorUnitTest_LDADD = ../libgslwrapper.a
|
---|
[46ea3b] | 60 |
|
---|
[8725ed] | 61 | InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp
|
---|
[31a6af] | 62 | InfoUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[8725ed] | 63 |
|
---|
[9fb860] | 64 | LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
---|
| 65 | LinearSystemOfEquationsUnitTest_LDADD = ../libgslwrapper.a ../libmolecuilder.a
|
---|
[8725ed] | 66 |
|
---|
[266237] | 67 | ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
|
---|
[31a6af] | 68 | ListOfBondsUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[266237] | 69 |
|
---|
[7326b2] | 70 | LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
|
---|
[31a6af] | 71 | LogUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[7326b2] | 72 |
|
---|
[e138de] | 73 | MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
|
---|
[31a6af] | 74 | MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[be90f1] | 75 |
|
---|
[e138de] | 76 | MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
|
---|
[31a6af] | 77 | MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[831a14] | 78 |
|
---|
[e138de] | 79 | StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
|
---|
[31a6af] | 80 | StackClassUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[d96277] | 81 |
|
---|
[c15ca2] | 82 | TesselationUnitTest_SOURCES = tesselationunittest.cpp tesselationunittest.hpp
|
---|
[31a6af] | 83 | TesselationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[c15ca2] | 84 |
|
---|
[e9c677] | 85 | Tesselation_BoundaryTriangleUnitTest_SOURCES = tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
|
---|
| 86 | Tesselation_BoundaryTriangleUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
| 87 |
|
---|
| 88 | Tesselation_InOutsideUnitTest_SOURCES = tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
---|
| 89 | Tesselation_InOutsideUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[d96277] | 90 |
|
---|
[e138de] | 91 | VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
|
---|
[31a6af] | 92 | VectorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
|
---|
[d96277] | 93 |
|
---|
[147339] | 94 | ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp
|
---|
| 95 | ActionSequenceTest_LDADD = ../libmolecuilder.a
|
---|
[d96277] | 96 |
|
---|
[831a14] | 97 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|
[7326b2] | 98 |
|
---|