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