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