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