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 | AM_CPPFLAGS = ${BOOST_CPPFLAGS}
|
---|
9 |
|
---|
10 | TESTS = \
|
---|
11 | ActionSequenceTest \
|
---|
12 | ActOnAllUnitTest \
|
---|
13 | AnalysisBondsUnitTests \
|
---|
14 | AnalysisCorrelationToPointUnitTest \
|
---|
15 | AnalysisCorrelationToSurfaceUnitTest \
|
---|
16 | AnalysisPairCorrelationUnitTest \
|
---|
17 | atomsCalculationTest \
|
---|
18 | AtomDescriptorTest \
|
---|
19 | BondGraphUnitTest \
|
---|
20 | BoxUnittest \
|
---|
21 | CacheableTest \
|
---|
22 | CountBondsUnitTest \
|
---|
23 | FormulaUnittest \
|
---|
24 | InfoUnitTest \
|
---|
25 | LinearSystemOfEquationsUnitTest \
|
---|
26 | LineUnittest \
|
---|
27 | LinkedCellUnitTest \
|
---|
28 | ListOfBondsUnitTest \
|
---|
29 | LogUnitTest \
|
---|
30 | manipulateAtomsTest \
|
---|
31 | MatrixContentSymmetricUnitTest \
|
---|
32 | MatrixContentUnitTest \
|
---|
33 | MatrixUnittest \
|
---|
34 | MenuDescriptionUnitTest \
|
---|
35 | MoleculeDescriptorTest \
|
---|
36 | ObserverTest \
|
---|
37 | ParserCommonUnitTest \
|
---|
38 | ParserTremoloUnitTest \
|
---|
39 | periodentafelTest \
|
---|
40 | PlaneUnittest \
|
---|
41 | Registry \
|
---|
42 | ShapeUnittest \
|
---|
43 | SingletonTest \
|
---|
44 | StackClassUnitTest \
|
---|
45 | SubspaceFactorizerUnitTest \
|
---|
46 | TesselationUnitTest \
|
---|
47 | Tesselation_BoundaryTriangleUnitTest \
|
---|
48 | Tesselation_InOutsideUnitTest \
|
---|
49 | VectorContentUnitTest \
|
---|
50 | VectorUnitTest
|
---|
51 |
|
---|
52 |
|
---|
53 | check_PROGRAMS = $(TESTS)
|
---|
54 | noinst_PROGRAMS = $(TESTS) TestRunner
|
---|
55 |
|
---|
56 | BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
|
---|
57 | GSLLIBS = \
|
---|
58 | ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
|
---|
59 | ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
|
---|
60 | ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
|
---|
61 | $(BOOST_LIB)
|
---|
62 | ALLLIBS = \
|
---|
63 | ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
|
---|
64 | ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
|
---|
65 | ${PARSERLIBS} \
|
---|
66 | ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
|
---|
67 | ${GSLLIBS}
|
---|
68 |
|
---|
69 | PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
|
---|
70 | UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
|
---|
71 |
|
---|
72 | TESTSOURCES = \
|
---|
73 | ActOnAllUnitTest.cpp \
|
---|
74 | ActionSequenceTest.cpp \
|
---|
75 | analysisbondsunittest.cpp \
|
---|
76 | AnalysisCorrelationToPointUnitTest.cpp \
|
---|
77 | AnalysisCorrelationToSurfaceUnitTest.cpp \
|
---|
78 | AnalysisPairCorrelationUnitTest.cpp \
|
---|
79 | AtomDescriptorTest.cpp \
|
---|
80 | atomsCalculationTest.cpp \
|
---|
81 | bondgraphunittest.cpp \
|
---|
82 | BoxUnittest.cpp \
|
---|
83 | CacheableTest.cpp \
|
---|
84 | CountBondsUnitTest.cpp \
|
---|
85 | FormulaUnittest.cpp \
|
---|
86 | infounittest.cpp \
|
---|
87 | linearsystemofequationsunittest.cpp \
|
---|
88 | LineUnittest.cpp \
|
---|
89 | LinkedCellUnitTest.cpp \
|
---|
90 | listofbondsunittest.cpp \
|
---|
91 | logunittest.cpp \
|
---|
92 | MatrixContentSymmetricUnittest.cpp \
|
---|
93 | MatrixContentUnittest.cpp \
|
---|
94 | MatrixUnittest.cpp \
|
---|
95 | manipulateAtomsTest.cpp \
|
---|
96 | MenuDescriptionUnitTest.cpp \
|
---|
97 | MoleculeDescriptorTest.cpp \
|
---|
98 | ObserverTest.cpp \
|
---|
99 | ParserCommonUnitTest.cpp \
|
---|
100 | ParserTremoloUnitTest.cpp \
|
---|
101 | periodentafelTest.cpp \
|
---|
102 | PlaneUnittest.cpp \
|
---|
103 | RegistryUnitTest.cpp \
|
---|
104 | ShapeUnittest.cpp \
|
---|
105 | SingletonTest.cpp \
|
---|
106 | stackclassunittest.cpp \
|
---|
107 | tesselationunittest.cpp \
|
---|
108 | tesselation_boundarytriangleunittest.cpp \
|
---|
109 | tesselation_insideoutsideunittest.cpp \
|
---|
110 | VectorContentUnittest.cpp \
|
---|
111 | vectorunittest.cpp
|
---|
112 |
|
---|
113 | TESTHEADERS = \
|
---|
114 | ActOnAllUnitTest.hpp \
|
---|
115 | ActionSequenceTest.hpp \
|
---|
116 | analysisbondsunittest.hpp \
|
---|
117 | AnalysisCorrelationToPointUnitTest.hpp \
|
---|
118 | AnalysisCorrelationToSurfaceUnitTest.hpp \
|
---|
119 | AnalysisPairCorrelationUnitTest.hpp \
|
---|
120 | AtomDescriptorTest.hpp \
|
---|
121 | atomsCalculationTest.hpp \
|
---|
122 | bondgraphunittest.hpp \
|
---|
123 | BoxUnittest.hpp \
|
---|
124 | CacheableTest.hpp \
|
---|
125 | CountBondsUnitTest.hpp \
|
---|
126 | FormulaUnittest.hpp \
|
---|
127 | infounittest.hpp \
|
---|
128 | linearsystemofequationsunittest.hpp \
|
---|
129 | LineUnittest.hpp \
|
---|
130 | LinkedCellUnitTest.hpp \
|
---|
131 | listofbondsunittest.hpp \
|
---|
132 | logunittest.hpp \
|
---|
133 | manipulateAtomsTest.hpp \
|
---|
134 | MatrixContentSymmetricUnittest.hpp \
|
---|
135 | MatrixContentUnittest.hpp \
|
---|
136 | MatrixUnittest.hpp \
|
---|
137 | MenuDescriptionUnitTest.hpp \
|
---|
138 | MoleculeDescriptorTest.hpp \
|
---|
139 | ObserverTest.hpp \
|
---|
140 | periodentafelTest.hpp \
|
---|
141 | ParserCommonUnitTest.hpp \
|
---|
142 | ParserTremoloUnitTest.hpp \
|
---|
143 | PlaneUnittest.hpp \
|
---|
144 | RegistryUnitTest.hpp \
|
---|
145 | SingletonTest.hpp \
|
---|
146 | stackclassunittest.hpp \
|
---|
147 | tesselationunittest.hpp \
|
---|
148 | tesselation_boundarytriangleunittest.hpp \
|
---|
149 | tesselation_insideoutsideunittest.hpp \
|
---|
150 | VectorContentUnittest.hpp \
|
---|
151 | vectorunittest.hpp
|
---|
152 |
|
---|
153 |
|
---|
154 | ActionSequenceTest_SOURCES = UnitTestMain.cpp ActionSequenceTest.cpp ActionSequenceTest.hpp
|
---|
155 | ActionSequenceTest_LDADD = ${UILIBS} ${ALLLIBS}
|
---|
156 |
|
---|
157 | ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
---|
158 | ActOnAllUnitTest_LDADD = ${ALLLIBS}
|
---|
159 |
|
---|
160 | AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
|
---|
161 | AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
|
---|
162 |
|
---|
163 | AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
---|
164 | AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
|
---|
165 |
|
---|
166 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
---|
167 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
|
---|
168 |
|
---|
169 | AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
---|
170 | AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
|
---|
171 |
|
---|
172 | atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
|
---|
173 | atomsCalculationTest_LDADD = ${ALLLIBS}
|
---|
174 |
|
---|
175 | AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
|
---|
176 | AtomDescriptorTest_LDADD = ${ALLLIBS}
|
---|
177 |
|
---|
178 | BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
|
---|
179 | BondGraphUnitTest_LDADD = ${ALLLIBS}
|
---|
180 |
|
---|
181 | BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
|
---|
182 | BoxUnittest_LDADD = ${ALLLIBS}
|
---|
183 |
|
---|
184 | CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
|
---|
185 | CacheableTest_LDADD = ${ALLLIBS}
|
---|
186 |
|
---|
187 | CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
|
---|
188 | CountBondsUnitTest_LDADD = ${ALLLIBS}
|
---|
189 |
|
---|
190 | FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
|
---|
191 | FormulaUnittest_LDADD = ${ALLLIBS}
|
---|
192 |
|
---|
193 | MatrixContentSymmetricUnitTest_SOURCES = UnitTestMain.cpp MatrixContentSymmetricUnittest.cpp MatrixContentSymmetricUnittest
|
---|
194 | MatrixContentSymmetricUnitTest_LDADD = ${ALLLIBS}
|
---|
195 |
|
---|
196 | MatrixContentUnitTest_SOURCES = UnitTestMain.cpp MatrixContentUnittest.cpp MatrixContentUnittest.hpp
|
---|
197 | MatrixContentUnitTest_LDADD = ${ALLLIBS}
|
---|
198 |
|
---|
199 | InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
|
---|
200 | InfoUnitTest_LDADD = ${ALLLIBS}
|
---|
201 |
|
---|
202 | LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
---|
203 | LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
|
---|
204 |
|
---|
205 | LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
|
---|
206 | LineUnittest_LDADD = ${ALLLIBS}
|
---|
207 |
|
---|
208 | LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
|
---|
209 | LinkedCellUnitTest_LDADD = ${ALLLIBS}
|
---|
210 |
|
---|
211 | ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
|
---|
212 | ListOfBondsUnitTest_LDADD = ${ALLLIBS}
|
---|
213 |
|
---|
214 | LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
|
---|
215 | LogUnitTest_LDADD = ${ALLLIBS}
|
---|
216 |
|
---|
217 | manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
|
---|
218 | manipulateAtomsTest_LDADD = ${UILIBS} ${ALLLIBS}
|
---|
219 |
|
---|
220 | MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp
|
---|
221 | MatrixUnittest_LDADD = ${ALLLIBS}
|
---|
222 |
|
---|
223 | MenuDescriptionUnitTest_SOURCES = UnitTestMain.cpp MenuDescriptionUnitTest.cpp MenuDescriptionUnitTest.hpp
|
---|
224 | MenuDescriptionUnitTest_LDADD = ${ALLLIBS}
|
---|
225 |
|
---|
226 | MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
|
---|
227 | MoleculeDescriptorTest_LDADD = ${ALLLIBS}
|
---|
228 |
|
---|
229 | ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
|
---|
230 | ObserverTest_LDADD = ${ALLLIBS}
|
---|
231 |
|
---|
232 | ParserCommonUnitTest_SOURCES = UnitTestMain.cpp ParserCommonUnitTest.cpp ParserCommonUnitTest.hpp
|
---|
233 | ParserCommonUnitTest_LDADD = ${ALLLIBS}
|
---|
234 |
|
---|
235 | ParserTremoloUnitTest_SOURCES = UnitTestMain.cpp ParserTremoloUnitTest.cpp ParserTremoloUnitTest.hpp
|
---|
236 | ParserTremoloUnitTest_LDADD = ${ALLLIBS}
|
---|
237 |
|
---|
238 | periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
|
---|
239 | periodentafelTest_LDADD = ${ALLLIBS}
|
---|
240 |
|
---|
241 | PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
|
---|
242 | PlaneUnittest_LDADD = ${ALLLIBS}
|
---|
243 |
|
---|
244 | Registry_SOURCES = UnitTestMain.cpp RegistryUnitTest.cpp RegistryUnitTest.hpp
|
---|
245 | Registry_LDADD = ${ALLLIBS}
|
---|
246 |
|
---|
247 | ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
|
---|
248 | ShapeUnittest_LDADD = ${ALLLIBS}
|
---|
249 |
|
---|
250 | SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
|
---|
251 | SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
---|
252 |
|
---|
253 | StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
|
---|
254 | StackClassUnitTest_LDADD = ${ALLLIBS}
|
---|
255 |
|
---|
256 | SubspaceFactorizerUnitTest_SOURCES = UnitTestMain.cpp SubspaceFactorizerUnittest.cpp SubspaceFactorizerUnittest.hpp
|
---|
257 | SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
|
---|
258 |
|
---|
259 | TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
|
---|
260 | TesselationUnitTest_LDADD = ${ALLLIBS}
|
---|
261 |
|
---|
262 | Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
|
---|
263 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
|
---|
264 |
|
---|
265 | Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
---|
266 | Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
|
---|
267 |
|
---|
268 | TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
|
---|
269 | TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
|
---|
270 |
|
---|
271 | VectorContentUnitTest_SOURCES = UnitTestMain.cpp VectorContentUnittest.cpp VectorContentUnittest.hpp
|
---|
272 | VectorContentUnitTest_LDADD = ${ALLLIBS}
|
---|
273 |
|
---|
274 | VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
|
---|
275 | VectorUnitTest_LDADD = ${ALLLIBS}
|
---|
276 |
|
---|
277 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|