1 | INCLUDES = -I$(top_srcdir)/src
|
---|
2 |
|
---|
3 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
---|
4 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
---|
5 |
|
---|
6 | MENUTESTS = ActionSequenceTest
|
---|
7 |
|
---|
8 |
|
---|
9 | TESTS = \
|
---|
10 | ActOnAllUnitTest \
|
---|
11 | AnalysisBondsUnitTests \
|
---|
12 | AnalysisCorrelationToPointUnitTest \
|
---|
13 | AnalysisCorrelationToSurfaceUnitTest \
|
---|
14 | AnalysisPairCorrelationUnitTest \
|
---|
15 | BondGraphUnitTest \
|
---|
16 | GSLMatrixSymmetricUnitTest \
|
---|
17 | GSLMatrixUnitTest \
|
---|
18 | GSLVectorUnitTest \
|
---|
19 | InfoUnitTest \
|
---|
20 | LinearSystemOfEquationsUnitTest \
|
---|
21 | ListOfBondsUnitTest \
|
---|
22 | LogUnitTest \
|
---|
23 | MemoryUsageObserverUnitTest \
|
---|
24 | MemoryAllocatorUnitTest \
|
---|
25 | StackClassUnitTest \
|
---|
26 | TesselationUnitTest \
|
---|
27 | Tesselation_BoundaryTriangleUnitTest \
|
---|
28 | Tesselation_InOutsideUnitTest \
|
---|
29 | VectorUnitTest \
|
---|
30 | ObserverTest \
|
---|
31 | CacheableTest \
|
---|
32 | DescriptorUnittest \
|
---|
33 | ${MENUTESTS}
|
---|
34 |
|
---|
35 | check_PROGRAMS = $(TESTS)
|
---|
36 | noinst_PROGRAMS = $(TESTS)
|
---|
37 |
|
---|
38 | GSLLIBS = ../libgslwrapper.a
|
---|
39 | ALLLIBS = ../libmolecuilder.a ${GSLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
---|
40 |
|
---|
41 | ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
---|
42 | ActOnAllUnitTest_LDADD = ${ALLLIBS}
|
---|
43 |
|
---|
44 | AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
|
---|
45 | AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
|
---|
46 |
|
---|
47 | AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
---|
48 | AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
|
---|
49 |
|
---|
50 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
---|
51 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
|
---|
52 |
|
---|
53 | AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
---|
54 | AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
|
---|
55 |
|
---|
56 | BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
|
---|
57 | BondGraphUnitTest_LDADD = ${ALLLIBS}
|
---|
58 |
|
---|
59 | GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
|
---|
60 | GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS}
|
---|
61 |
|
---|
62 | GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp
|
---|
63 | GSLMatrixUnitTest_LDADD = ${GSLLIBS}
|
---|
64 |
|
---|
65 | GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp
|
---|
66 | GSLVectorUnitTest_LDADD = ${GSLLIBS}
|
---|
67 |
|
---|
68 | InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp
|
---|
69 | InfoUnitTest_LDADD = ${ALLLIBS}
|
---|
70 |
|
---|
71 | LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
---|
72 | LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
|
---|
73 |
|
---|
74 | ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
|
---|
75 | ListOfBondsUnitTest_LDADD = ${ALLLIBS}
|
---|
76 |
|
---|
77 | LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
|
---|
78 | LogUnitTest_LDADD = ${ALLLIBS}
|
---|
79 |
|
---|
80 | MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
|
---|
81 | MemoryAllocatorUnitTest_LDADD = ${ALLLIBS}
|
---|
82 |
|
---|
83 | MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
|
---|
84 | MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS}
|
---|
85 |
|
---|
86 | StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
|
---|
87 | StackClassUnitTest_LDADD = ${ALLLIBS}
|
---|
88 |
|
---|
89 | TesselationUnitTest_SOURCES = tesselationunittest.cpp tesselationunittest.hpp
|
---|
90 | TesselationUnitTest_LDADD = ${ALLLIBS}
|
---|
91 |
|
---|
92 | Tesselation_BoundaryTriangleUnitTest_SOURCES = tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
|
---|
93 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
|
---|
94 |
|
---|
95 | Tesselation_InOutsideUnitTest_SOURCES = tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
---|
96 | Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
|
---|
97 |
|
---|
98 | VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
|
---|
99 | VectorUnitTest_LDADD = ${ALLLIBS}
|
---|
100 |
|
---|
101 | ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp
|
---|
102 | ActionSequenceTest_LDADD = ${ALLLIBS} ../libmenu.a
|
---|
103 |
|
---|
104 | ObserverTest_SOURCES = ObserverTest.cpp ObserverTest.hpp
|
---|
105 | ObserverTest_LDADD = ${ALLLIBS}
|
---|
106 |
|
---|
107 | CacheableTest_SOURCES = CacheableTest.cpp CacheableTest.hpp
|
---|
108 | CacheableTest_LDADD = ${ALLLIBS}
|
---|
109 |
|
---|
110 | DescriptorUnittest_SOURCES = DescriptorUnittest.cpp DescriptorUnittest.hpp
|
---|
111 | DescriptorUnittest_LDADD = ${ALLLIBS}
|
---|
112 |
|
---|
113 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|
114 |
|
---|