| 1 | INCLUDES = -I$(top_srcdir)/src
|
|---|
| 2 |
|
|---|
| 3 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
|---|
| 4 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
|---|
| 5 |
|
|---|
| 6 | MENUTESTS = ActionSequenceTest
|
|---|
| 7 |
|
|---|
| 8 | TESTS = ActOnAllUnitTest AnalysisBondsUnitTests AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest LogUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest ${MENUTESTS}
|
|---|
| 9 | check_PROGRAMS = $(TESTS)
|
|---|
| 10 | noinst_PROGRAMS = $(TESTS)
|
|---|
| 11 |
|
|---|
| 12 | ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
|---|
| 13 | ActOnAllUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 14 |
|
|---|
| 15 | AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
|
|---|
| 16 | AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a
|
|---|
| 17 |
|
|---|
| 18 | AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
|---|
| 19 | AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 20 |
|
|---|
| 21 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
|---|
| 22 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 23 |
|
|---|
| 24 | AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
|---|
| 25 | AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 26 |
|
|---|
| 27 | BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
|
|---|
| 28 | BondGraphUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 29 |
|
|---|
| 30 | ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
|
|---|
| 31 | ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 32 |
|
|---|
| 33 | LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
|
|---|
| 34 | LogUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 35 |
|
|---|
| 36 | MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
|
|---|
| 37 | MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 38 |
|
|---|
| 39 | MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
|
|---|
| 40 | MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 41 |
|
|---|
| 42 | StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
|
|---|
| 43 | StackClassUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 44 |
|
|---|
| 45 | VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
|
|---|
| 46 | VectorUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 47 |
|
|---|
| 48 | ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp
|
|---|
| 49 | ActionSequenceTest_LDADD = ../libmolecuilder.a
|
|---|
| 50 |
|
|---|
| 51 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|
| 52 |
|
|---|