source: molecuilder/src/unittests/Makefile.am@ e71890

Last change on this file since e71890 was e71890, checked in by Frederik Heber <heber@…>, 16 years ago

Merge branch 'new-delete-conversion' into CodeRefactoring

Conflicts:

molecuilder/src/Makefile.am
molecuilder/src/helpers.cpp
molecuilder/src/helpers.hpp
molecuilder/src/memoryusageobserver.cpp

  • FIX: performCriticalExit() was declared static but not defined a such.
  • Merge was basically only due to libmolecuilder which was not used in CodeRefactoring branch before.
  • added ActOnAll Unit test to new unittests sub folder and to Makefile.am
  • Property mode set to 100644
File size: 1.4 KB
Line 
1INCLUDES = -I$(top_srcdir)/src
2
3noinst_PROGRAMS = ActOnAllTest MemoryAllocatorUnitTest MemoryUsageObserverUnitTest VectorUnitTest
4
5TESTS = ActOnAllTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest VectorUnitTest
6check_PROGRAMS = $(TESTS)
7
8ActOnAllTest_SOURCES = ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp
9ActOnAllTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
10ActOnAllTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
11ActOnAllTest_LDADD = ../libmolecuilder.a
12
13
14VectorUnitTest_SOURCES = defs.hpp helpers.hpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.hpp verbose.hpp
15VectorUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
16VectorUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
17VectorUnitTest_LDADD = ../libmolecuilder.a
18
19MemoryAllocatorUnitTest_SOURCES = defs.hpp helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp
20MemoryAllocatorUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS) -I..
21MemoryAllocatorUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
22MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
23
24MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp verbose.hpp
25MemoryUsageObserverUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
26MemoryUsageObserverUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
27MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
Note: See TracBrowser for help on using the repository browser.