1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | INCLUDES = -I$(top_srcdir)/src
|
---|
5 |
|
---|
6 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
---|
7 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
---|
8 |
|
---|
9 | TESTS = \
|
---|
10 | ActionSequenceTest \
|
---|
11 | ActOnAllUnitTest \
|
---|
12 | AnalysisBondsUnitTests \
|
---|
13 | AnalysisCorrelationToPointUnitTest \
|
---|
14 | AnalysisCorrelationToSurfaceUnitTest \
|
---|
15 | AnalysisPairCorrelationUnitTest \
|
---|
16 | atomsCalculationTest \
|
---|
17 | AtomDescriptorTest \
|
---|
18 | BondGraphUnitTest \
|
---|
19 | BoxUnittest \
|
---|
20 | CacheableTest \
|
---|
21 | CountBondsUnitTest \
|
---|
22 | FormulaUnittest \
|
---|
23 | GSLMatrixSymmetricUnitTest \
|
---|
24 | GSLMatrixUnitTest \
|
---|
25 | GSLVectorUnitTest \
|
---|
26 | InfoUnitTest \
|
---|
27 | LinearSystemOfEquationsUnitTest \
|
---|
28 | LineUnittest \
|
---|
29 | LinkedCellUnitTest \
|
---|
30 | ListOfBondsUnitTest \
|
---|
31 | LogUnitTest \
|
---|
32 | manipulateAtomsTest \
|
---|
33 | MatrixUnittest \
|
---|
34 | MoleculeDescriptorTest \
|
---|
35 | ObserverTest \
|
---|
36 | ParserUnitTest \
|
---|
37 | periodentafelTest \
|
---|
38 | PlaneUnittest \
|
---|
39 | ShapeUnittest \
|
---|
40 | SingletonTest \
|
---|
41 | StackClassUnitTest \
|
---|
42 | TesselationUnitTest \
|
---|
43 | Tesselation_BoundaryTriangleUnitTest \
|
---|
44 | Tesselation_InOutsideUnitTest \
|
---|
45 | VectorUnitTest
|
---|
46 |
|
---|
47 |
|
---|
48 | check_PROGRAMS = $(TESTS)
|
---|
49 | noinst_PROGRAMS = $(TESTS) TestRunner
|
---|
50 |
|
---|
51 | GSLLIBS = ../libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
|
---|
52 | ALLLIBS = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ${GSLLIBS}
|
---|
53 | PARSERLIBS = ${ALLLIBS}
|
---|
54 |
|
---|
55 | TESTSOURCES = \
|
---|
56 | ActOnAllUnitTest.cpp \
|
---|
57 | ActionSequenceTest.cpp \
|
---|
58 | analysisbondsunittest.cpp \
|
---|
59 | AnalysisCorrelationToPointUnitTest.cpp \
|
---|
60 | AnalysisCorrelationToSurfaceUnitTest.cpp \
|
---|
61 | AnalysisPairCorrelationUnitTest.cpp \
|
---|
62 | AtomDescriptorTest.cpp \
|
---|
63 | atomsCalculationTest.cpp \
|
---|
64 | bondgraphunittest.cpp \
|
---|
65 | BoxUnittest.cpp \
|
---|
66 | CacheableTest.cpp \
|
---|
67 | CountBondsUnitTest.cpp \
|
---|
68 | FormulaUnittest.cpp \
|
---|
69 | gslmatrixsymmetricunittest.cpp \
|
---|
70 | gslmatrixunittest.cpp \
|
---|
71 | gslvectorunittest.cpp \
|
---|
72 | infounittest.cpp \
|
---|
73 | linearsystemofequationsunittest.cpp \
|
---|
74 | LineUnittest.cpp \
|
---|
75 | LinkedCellUnitTest.cpp \
|
---|
76 | listofbondsunittest.cpp \
|
---|
77 | logunittest.cpp \
|
---|
78 | MatrixUnittest.cpp \
|
---|
79 | manipulateAtomsTest.cpp \
|
---|
80 | MoleculeDescriptorTest.cpp \
|
---|
81 | ObserverTest.cpp \
|
---|
82 | ParserUnitTest.cpp \
|
---|
83 | periodentafelTest.cpp \
|
---|
84 | PlaneUnittest.cpp \
|
---|
85 | ShapeUnittest.cpp \
|
---|
86 | SingletonTest.cpp \
|
---|
87 | stackclassunittest.cpp \
|
---|
88 | tesselationunittest.cpp \
|
---|
89 | tesselation_boundarytriangleunittest.cpp \
|
---|
90 | tesselation_insideoutsideunittest.cpp \
|
---|
91 | vectorunittest.cpp
|
---|
92 |
|
---|
93 | TESTHEADERS = \
|
---|
94 | ActOnAllUnitTest.hpp \
|
---|
95 | ActionSequenceTest.hpp \
|
---|
96 | analysisbondsunittest.hpp \
|
---|
97 | AnalysisCorrelationToPointUnitTest.hpp \
|
---|
98 | AnalysisCorrelationToSurfaceUnitTest.hpp \
|
---|
99 | AnalysisPairCorrelationUnitTest.hpp \
|
---|
100 | AtomDescriptorTest.hpp \
|
---|
101 | atomsCalculationTest.hpp \
|
---|
102 | bondgraphunittest.hpp \
|
---|
103 | BoxUnittest.hpp \
|
---|
104 | CacheableTest.hpp \
|
---|
105 | CountBondsUnitTest.hpp \
|
---|
106 | FormulaUnittest.hpp \
|
---|
107 | gslmatrixsymmetricunittest.hpp \
|
---|
108 | gslmatrixunittest.hpp \
|
---|
109 | gslvectorunittest.hpp \
|
---|
110 | infounittest.hpp \
|
---|
111 | linearsystemofequationsunittest.hpp \
|
---|
112 | LineUnittest.hpp \
|
---|
113 | LinkedCellUnitTest.hpp \
|
---|
114 | listofbondsunittest.hpp \
|
---|
115 | logunittest.hpp \
|
---|
116 | manipulateAtomsTest.hpp \
|
---|
117 | MatrixUnittest.hpp \
|
---|
118 | MoleculeDescriptorTest.hpp \
|
---|
119 | periodentafelTest.hpp \
|
---|
120 | PlaneUnittest.hpp \
|
---|
121 | ObserverTest.hpp \
|
---|
122 | SingletonTest.hpp \
|
---|
123 | stackclassunittest.hpp \
|
---|
124 | tesselationunittest.hpp \
|
---|
125 | tesselation_boundarytriangleunittest.hpp \
|
---|
126 | tesselation_insideoutsideunittest.hpp \
|
---|
127 | vectorunittest.hpp
|
---|
128 |
|
---|
129 |
|
---|
130 | ActionSequenceTest_SOURCES = UnitTestMain.cpp ActionSequenceTest.cpp ActionSequenceTest.hpp
|
---|
131 | ActionSequenceTest_LDADD = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ../libparser.a ../libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
|
---|
132 |
|
---|
133 | ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
---|
134 | ActOnAllUnitTest_LDADD = ${ALLLIBS}
|
---|
135 |
|
---|
136 | AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
|
---|
137 | AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
|
---|
138 |
|
---|
139 | AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
---|
140 | AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
|
---|
141 |
|
---|
142 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
---|
143 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
|
---|
144 |
|
---|
145 | AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
---|
146 | AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
|
---|
147 |
|
---|
148 | atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
|
---|
149 | atomsCalculationTest_LDADD = ${ALLLIBS}
|
---|
150 |
|
---|
151 | AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
|
---|
152 | AtomDescriptorTest_LDADD = ${ALLLIBS}
|
---|
153 |
|
---|
154 | BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
|
---|
155 | BondGraphUnitTest_LDADD = ${ALLLIBS}
|
---|
156 |
|
---|
157 | BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
|
---|
158 | BoxUnittest_LDADD = ${ALLLIBS}
|
---|
159 |
|
---|
160 | CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
|
---|
161 | CacheableTest_LDADD = ${ALLLIBS}
|
---|
162 |
|
---|
163 | CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
|
---|
164 | CountBondsUnitTest_LDADD = ${ALLLIBS}
|
---|
165 |
|
---|
166 | FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
|
---|
167 | FormulaUnittest_LDADD = ${ALLLIBS}
|
---|
168 |
|
---|
169 | GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
|
---|
170 | GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS}
|
---|
171 |
|
---|
172 | GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
|
---|
173 | GSLMatrixUnitTest_LDADD = ${GSLLIBS}
|
---|
174 |
|
---|
175 | GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
|
---|
176 | GSLVectorUnitTest_LDADD = ${GSLLIBS}
|
---|
177 |
|
---|
178 | InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
|
---|
179 | InfoUnitTest_LDADD = ${ALLLIBS}
|
---|
180 |
|
---|
181 | LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
---|
182 | LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
|
---|
183 |
|
---|
184 | LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
|
---|
185 | LineUnittest_LDADD = ${ALLLIBS}
|
---|
186 |
|
---|
187 | LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
|
---|
188 | LinkedCellUnitTest_LDADD = ${ALLLIBS}
|
---|
189 |
|
---|
190 | ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
|
---|
191 | ListOfBondsUnitTest_LDADD = ${ALLLIBS}
|
---|
192 |
|
---|
193 | LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
|
---|
194 | LogUnitTest_LDADD = ${ALLLIBS}
|
---|
195 |
|
---|
196 | manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
|
---|
197 | manipulateAtomsTest_LDADD = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ../libparser.a ../libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
|
---|
198 |
|
---|
199 | MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp
|
---|
200 | MatrixUnittest_LDADD = ${ALLLIBS}
|
---|
201 |
|
---|
202 | MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
|
---|
203 | MoleculeDescriptorTest_LDADD = ${ALLLIBS}
|
---|
204 |
|
---|
205 | ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
|
---|
206 | ObserverTest_LDADD = ${ALLLIBS}
|
---|
207 |
|
---|
208 | ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp
|
---|
209 | ParserUnitTest_LDADD = ${PARSERLIBS}
|
---|
210 |
|
---|
211 | periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
|
---|
212 | periodentafelTest_LDADD = ${ALLLIBS}
|
---|
213 |
|
---|
214 | PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
|
---|
215 | PlaneUnittest_LDADD = ${ALLLIBS}
|
---|
216 |
|
---|
217 | ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
|
---|
218 | ShapeUnittest_LDADD = ${ALLLIBS}
|
---|
219 |
|
---|
220 | SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
|
---|
221 | SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
---|
222 |
|
---|
223 | StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
|
---|
224 | StackClassUnitTest_LDADD = ${ALLLIBS}
|
---|
225 |
|
---|
226 | TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
|
---|
227 | TesselationUnitTest_LDADD = ${ALLLIBS}
|
---|
228 |
|
---|
229 | Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
|
---|
230 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
|
---|
231 |
|
---|
232 | Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
---|
233 | Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
|
---|
234 |
|
---|
235 | TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
|
---|
236 | TestRunner_LDADD = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ../libparser.a ../libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
|
---|
237 |
|
---|
238 | VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
|
---|
239 | VectorUnitTest_LDADD = ${ALLLIBS}
|
---|
240 |
|
---|
241 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|