Changes in src/unittests/Makefile.am [c39cc4:0eb2dc]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/Makefile.am
rc39cc4 r0eb2dc 1 # PLEASE adhere to the alphabetical ordering in this Makefile! 2 # Also indentation by a single tab 3 1 4 INCLUDES = -I$(top_srcdir)/src 2 5 … … 28 31 LogUnitTest \ 29 32 manipulateAtomsTest \ 30 MemoryUsageObserverUnitTest \ 31 MemoryAllocatorUnitTest \ 33 MatrixUnittest \ 32 34 MoleculeDescriptorTest \ 35 ObserverTest \ 36 ParserUnitTest \ 37 periodentafelTest \ 33 38 PlaneUnittest \ 34 ObserverTest \39 ShapeUnittest \ 35 40 SingletonTest \ 36 41 StackClassUnitTest \ … … 47 52 GSLLIBS = ../libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB} 48 53 ALLLIBS = ../libmolecuilder.a ${GSLLIBS} 54 PARSERLIBS = ../libparser.a ${ALLLIBS} 49 55 50 56 TESTSOURCES = \ … … 69 75 listofbondsunittest.cpp \ 70 76 logunittest.cpp \ 77 MatrixUnittest.cpp \ 71 78 manipulateAtomsTest.cpp \ 72 memoryallocatorunittest.cpp \73 memoryusageobserverunittest.cpp \74 79 MoleculeDescriptorTest.cpp \ 80 ObserverTest.cpp \ 81 ParserUnitTest.cpp \ 82 periodentafelTest.cpp \ 75 83 PlaneUnittest.cpp \ 76 ObserverTest.cpp \84 ShapeUnittest.cpp \ 77 85 SingletonTest.cpp \ 78 86 stackclassunittest.cpp \ … … 104 112 logunittest.hpp \ 105 113 manipulateAtomsTest.hpp \ 106 memoryallocatorunittest.hpp \ 107 memoryusageobserverunittest.hpp \ 114 MatrixUnittest.hpp \ 108 115 MoleculeDescriptorTest.hpp \ 116 periodentafelTest.hpp \ 109 117 PlaneUnittest.hpp \ 110 118 ObserverTest.hpp \ … … 117 125 118 126 127 ActionSequenceTest_SOURCES = UnitTestMain.cpp ../../../TestRunnerClient.hpp ActionSequenceTest.cpp ActionSequenceTest.hpp 128 ActionSequenceTest_LDADD = ${ALLLIBS} 129 119 130 ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp 120 131 ActOnAllUnitTest_LDADD = ${ALLLIBS} … … 135 146 atomsCalculationTest_LDADD = ${ALLLIBS} 136 147 148 AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp 149 AtomDescriptorTest_LDADD = ${ALLLIBS} 150 137 151 BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp 138 152 BondGraphUnitTest_LDADD = ${ALLLIBS} 139 153 154 CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp 155 CacheableTest_LDADD = ${ALLLIBS} 156 140 157 CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp 141 158 CountBondsUnitTest_LDADD = ${ALLLIBS} … … 168 185 LogUnitTest_LDADD = ${ALLLIBS} 169 186 170 MemoryAllocatorUnitTest_SOURCES = UnitTestMain.cpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp 171 MemoryAllocatorUnitTest_LDADD = ${ALLLIBS}172 173 M emoryUsageObserverUnitTest_SOURCES = UnitTestMain.cpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp174 M emoryUsageObserverUnitTest_LDADD = ${ALLLIBS}187 manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp 188 manipulateAtomsTest_LDADD = ${ALLLIBS} 189 190 MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp 191 MatrixUnittest_LDADD = ${ALLLIBS} 175 192 176 193 MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp 177 194 MoleculeDescriptorTest_LDADD = ${ALLLIBS} 178 195 196 ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp 197 ObserverTest_LDADD = ${ALLLIBS} 198 199 ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp 200 ParserUnitTest_LDADD = ${PARSERLIBS} 201 202 periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp 203 periodentafelTest_LDADD = ${ALLLIBS} 204 179 205 PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp 180 206 PlaneUnittest_LDADD = ${ALLLIBS} 181 207 208 ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp 209 ShapeUnittest_LDADD = ${ALLLIBS} 210 182 211 SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp 183 SingletonTest_LDADD = $ (BOOST_LIB) ${BOOST_THREAD_LIB}212 SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB} 184 213 185 214 StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp … … 195 224 Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS} 196 225 226 TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS) 227 TestRunner_LDADD = ${ALLLIBS} 228 197 229 VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp 198 230 VectorUnitTest_LDADD = ${ALLLIBS} 199 231 200 ActionSequenceTest_SOURCES = UnitTestMain.cpp ../../../TestRunnerClient.hpp ActionSequenceTest.cpp ActionSequenceTest.hpp201 ActionSequenceTest_LDADD = ${ALLLIBS}202 203 ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp204 ObserverTest_LDADD = ${ALLLIBS}205 206 CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp207 CacheableTest_LDADD = ${ALLLIBS}208 209 AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp210 AtomDescriptorTest_LDADD = ${ALLLIBS}211 212 manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp213 manipulateAtomsTest_LDADD = ${ALLLIBS}214 215 TestRunner_SOURCES = UnitTestMain.cpp $(TESTSOURCES) $(TESTHEADERS)216 TestRunner_LDADD = ${ALLLIBS}217 218 232 #AUTOMAKE_OPTIONS = parallel-tests 219
Note:
See TracChangeset
for help on using the changeset viewer.