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