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