Changeset 42918b for molecuilder/src/unittests
- Timestamp:
- Feb 5, 2010, 2:59:41 PM (16 years ago)
- Children:
- d2d8f5
- Parents:
- 181488
- git-author:
- Tillmann Crueger <crueger@…> (02/05/10 14:53:21)
- git-committer:
- Tillmann Crueger <crueger@…> (02/05/10 14:59:41)
- File:
-
- 1 edited
-
molecuilder/src/unittests/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/unittests/Makefile.am
r181488 r42918b 35 35 noinst_PROGRAMS = $(TESTS) 36 36 37 GSLLIBS = ../libgslwrapper.a 38 ALLLIBS = ../libmolecuilder.a ${GSLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB} 39 37 40 ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp 38 ActOnAllUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a41 ActOnAllUnitTest_LDADD = ${ALLLIBS} 39 42 40 43 AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp 41 AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a ../libgslwrapper.a44 AnalysisBondsUnitTests_LDADD = ${ALLLIBS} 42 45 43 46 AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp 44 AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a47 AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS} 45 48 46 49 AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp 47 AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a50 AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS} 48 51 49 52 AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp 50 AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a53 AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS} 51 54 52 55 BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp 53 BondGraphUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a56 BondGraphUnitTest_LDADD = ${ALLLIBS} 54 57 55 58 GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp 56 GSLMatrixSymmetricUnitTest_LDADD = ../libgslwrapper.a59 GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS} 57 60 58 61 GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp 59 GSLMatrixUnitTest_LDADD = ../libgslwrapper.a62 GSLMatrixUnitTest_LDADD = ${GSLLIBS} 60 63 61 64 GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp 62 GSLVectorUnitTest_LDADD = ../libgslwrapper.a65 GSLVectorUnitTest_LDADD = ${GSLLIBS} 63 66 64 67 InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp 65 InfoUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a68 InfoUnitTest_LDADD = ${ALLLIBS} 66 69 67 70 LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp 68 LinearSystemOfEquationsUnitTest_LDADD = ../libgslwrapper.a ../libmolecuilder.a71 LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS} 69 72 70 73 ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp 71 ListOfBondsUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a74 ListOfBondsUnitTest_LDADD = ${ALLLIBS} 72 75 73 76 LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp 74 LogUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a77 LogUnitTest_LDADD = ${ALLLIBS} 75 78 76 79 MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp 77 MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a80 MemoryAllocatorUnitTest_LDADD = ${ALLLIBS} 78 81 79 82 MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp 80 MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a83 MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS} 81 84 82 85 StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp 83 StackClassUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a86 StackClassUnitTest_LDADD = ${ALLLIBS} 84 87 85 88 TesselationUnitTest_SOURCES = tesselationunittest.cpp tesselationunittest.hpp 86 TesselationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a89 TesselationUnitTest_LDADD = ${ALLLIBS} 87 90 88 91 Tesselation_BoundaryTriangleUnitTest_SOURCES = tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp 89 Tesselation_BoundaryTriangleUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a92 Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS} 90 93 91 94 Tesselation_InOutsideUnitTest_SOURCES = tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp 92 Tesselation_InOutsideUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a95 Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS} 93 96 94 97 VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp 95 VectorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a98 VectorUnitTest_LDADD = ${ALLLIBS} 96 99 97 100 ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp 98 ActionSequenceTest_LDADD = ../libmolecuilder.a101 ActionSequenceTest_LDADD = ${ALLLIBS} 99 102 100 103 ObserverTest_SOURCES = ObserverTest.cpp ObserverTest.hpp 101 ObserverTest_LDADD = ../libmolecuilder.a104 ObserverTest_LDADD = ${ALLLIBS} 102 105 103 106 CacheableTest_SOURCES = CacheableTest.cpp CacheableTest.hpp 104 CacheableTest_LDADD = ../libmolecuilder.a107 CacheableTest_LDADD = ${ALLLIBS} 105 108 106 109 #AUTOMAKE_OPTIONS = parallel-tests
Note:
See TracChangeset
for help on using the changeset viewer.
