| 1 | INCLUDES = -I$(top_srcdir)/src
|
|---|
| 2 |
|
|---|
| 3 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
|---|
| 4 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
|---|
| 5 |
|
|---|
| 6 | TESTS = \
|
|---|
| 7 | ActOnAllUnitTest \
|
|---|
| 8 | AnalysisBondsUnitTests \
|
|---|
| 9 | AnalysisCorrelationToPointUnitTest \
|
|---|
| 10 | AnalysisCorrelationToSurfaceUnitTest \
|
|---|
| 11 | AnalysisPairCorrelationUnitTest \
|
|---|
| 12 | BondGraphUnitTest \
|
|---|
| 13 | GSLMatrixSymmetricUnitTest \
|
|---|
| 14 | GSLMatrixUnitTest \
|
|---|
| 15 | GSLVectorUnitTest \
|
|---|
| 16 | InfoUnitTest \
|
|---|
| 17 | ListOfBondsUnitTest \
|
|---|
| 18 | LogUnitTest \
|
|---|
| 19 | MemoryUsageObserverUnitTest \
|
|---|
| 20 | MemoryAllocatorUnitTest \
|
|---|
| 21 | StackClassUnitTest \
|
|---|
| 22 | TesselationUnitTest \
|
|---|
| 23 | TesselationInOutsideUnitTest \
|
|---|
| 24 | VectorUnitTest
|
|---|
| 25 |
|
|---|
| 26 | check_PROGRAMS = $(TESTS)
|
|---|
| 27 | noinst_PROGRAMS = $(TESTS)
|
|---|
| 28 |
|
|---|
| 29 | ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
|---|
| 30 | ActOnAllUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 31 |
|
|---|
| 32 | AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
|
|---|
| 33 | AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a
|
|---|
| 34 |
|
|---|
| 35 | AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
|---|
| 36 | AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 37 |
|
|---|
| 38 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
|---|
| 39 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 40 |
|
|---|
| 41 | AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
|---|
| 42 | AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 43 |
|
|---|
| 44 | BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
|
|---|
| 45 | BondGraphUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 46 |
|
|---|
| 47 | GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
|
|---|
| 48 | GSLMatrixSymmetricUnitTest_LDADD = ../libgslwrapper.a
|
|---|
| 49 |
|
|---|
| 50 | GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp
|
|---|
| 51 | GSLMatrixUnitTest_LDADD = ../libgslwrapper.a
|
|---|
| 52 |
|
|---|
| 53 | GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp
|
|---|
| 54 | GSLVectorUnitTest_LDADD = ../libgslwrapper.a
|
|---|
| 55 |
|
|---|
| 56 | InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp
|
|---|
| 57 | InfoUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 58 |
|
|---|
| 59 | LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
|---|
| 60 | LinearSystemOfEquationsUnitTest_LDADD = ../libgslwrapper.a ../libmolecuilder.a
|
|---|
| 61 |
|
|---|
| 62 | ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
|
|---|
| 63 | ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 64 |
|
|---|
| 65 | LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
|
|---|
| 66 | LogUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 67 |
|
|---|
| 68 | MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
|
|---|
| 69 | MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 70 |
|
|---|
| 71 | MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
|
|---|
| 72 | MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 73 |
|
|---|
| 74 | StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
|
|---|
| 75 | StackClassUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 76 |
|
|---|
| 77 | TesselationUnitTest_SOURCES = tesselationunittest.cpp tesselationunittest.hpp
|
|---|
| 78 | TesselationUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 79 |
|
|---|
| 80 | TesselationInOutsideUnitTest_SOURCES = tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
|---|
| 81 | TesselationInOutsideUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 82 |
|
|---|
| 83 | VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
|
|---|
| 84 | VectorUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 85 |
|
|---|
| 86 |
|
|---|
| 87 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|
| 88 |
|
|---|