Changes in src/unittests/Makefile.am [06c7a3:2aeefd]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/Makefile.am
r06c7a3 r2aeefd 1 1 INCLUDES = -I$(top_srcdir)/src 2 2 3 noinst_PROGRAMS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest LogUnitTest MemoryAllocatorUnitTest MemoryUsageObserverUnitTest VectorUnitTest 3 AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl 4 AM_CXXFLAGS = $(CPPUNIT_CFLAGS) 4 5 5 TESTS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest VectorUnitTest6 TESTS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest 6 7 check_PROGRAMS = $(TESTS) 8 noinst_PROGRAMS = $(TESTS) 7 9 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 10 ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp 12 11 13 12 AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp 14 AnalysisCorrelationToPointUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)15 AnalysisCorrelationToPointUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl16 13 AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a 17 14 18 15 AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp 19 AnalysisCorrelationToSurfaceUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)20 AnalysisCorrelationToSurfaceUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl21 16 AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a 22 17 23 18 AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp 24 AnalysisPairCorrelationUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)25 AnalysisPairCorrelationUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl26 19 AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a 27 20 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 21 BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp 22 BondGraphUnitTest_LDADD = ../libmolecuilder.a 32 23 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.a24 ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp 25 ListOfBondsUnitTest_LDADD = ../libmolecuilder.a 26 27 MemoryAllocatorUnitTest_SOURCES = defs.hpp ../helpers.cpp ../helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp 37 28 38 29 MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp verbose.hpp 39 MemoryUsageObserverUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)40 MemoryUsageObserverUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl41 MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a42 30 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 31 StackClassUnitTest_SOURCES = memoryallocator.hpp stackclass.hpp stackclassunittest.cpp stackclassunittest.hpp 32 33 VectorUnitTest_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.