Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/unittests/Makefile.am

    r06c7a3 r2aeefd  
    11INCLUDES = -I$(top_srcdir)/src
    22
    3 noinst_PROGRAMS =  ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest LogUnitTest MemoryAllocatorUnitTest MemoryUsageObserverUnitTest VectorUnitTest
     3AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
     4AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
    45
    5 TESTS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest VectorUnitTest
     6TESTS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest
    67check_PROGRAMS = $(TESTS)
     8noinst_PROGRAMS = $(TESTS)
    79
    8 ActOnAllUnitTest_SOURCES = ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp
    9 ActOnAllUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
    10 ActOnAllUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
    11 ActOnAllUnitTest_LDADD = ../libmolecuilder.a
     10ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp
    1211
    1312AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
    14 AnalysisCorrelationToPointUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
    15 AnalysisCorrelationToPointUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
    1613AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
    1714
    1815AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
    19 AnalysisCorrelationToSurfaceUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
    20 AnalysisCorrelationToSurfaceUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
    2116AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
    2217
    2318AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
    24 AnalysisPairCorrelationUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
    25 AnalysisPairCorrelationUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
    2619AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
    2720
    28 VectorUnitTest_SOURCES = defs.hpp helpers.hpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.hpp verbose.hpp
    29 VectorUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
    30 VectorUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
    31 VectorUnitTest_LDADD = ../libmolecuilder.a
     21BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
     22BondGraphUnitTest_LDADD = ../libmolecuilder.a
    3223
    33 MemoryAllocatorUnitTest_SOURCES = defs.hpp helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp
    34 MemoryAllocatorUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS) -I..
    35 MemoryAllocatorUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
    36 MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
     24ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
     25ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
     26
     27MemoryAllocatorUnitTest_SOURCES = defs.hpp ../helpers.cpp ../helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp
    3728
    3829MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp verbose.hpp
    39 MemoryUsageObserverUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
    40 MemoryUsageObserverUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
    41 MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
    4230
    43 LogUnitTest_SOURCES = ../errorLogger.cpp ../errorLogger.hpp ../log.cpp ../log.hpp ../logger.cpp ../logger.hpp logunittest.cpp logunittest.hpp
    44 LogUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
    45 LogUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
    46 LogUnitTest_LDADD = ../libmolecuilder.a
     31StackClassUnitTest_SOURCES = memoryallocator.hpp stackclass.hpp stackclassunittest.cpp stackclassunittest.hpp
     32
     33VectorUnitTest_SOURCES = defs.hpp ../helpers.cpp helpers.hpp ../leastsquaremin.cpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.hpp ../vector.cpp verbose.hpp ../verbose.cpp
     34
     35
     36#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracChangeset for help on using the changeset viewer.