1 | INCLUDES = -I$(top_srcdir)/src
|
---|
2 |
|
---|
3 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
---|
4 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
---|
5 |
|
---|
6 | MENUTESTS = ActionSequenceTest
|
---|
7 |
|
---|
8 | TESTS = \
|
---|
9 | ActOnAllUnitTest \
|
---|
10 | AnalysisBondsUnitTests \
|
---|
11 | AnalysisCorrelationToPointUnitTest \
|
---|
12 | AnalysisCorrelationToSurfaceUnitTest \
|
---|
13 | AnalysisPairCorrelationUnitTest \
|
---|
14 | BondGraphUnitTest \
|
---|
15 | GSLMatrixSymmetricUnitTest \
|
---|
16 | GSLMatrixUnitTest \
|
---|
17 | GSLVectorUnitTest \
|
---|
18 | InfoUnitTest \
|
---|
19 | LinearSystemOfEquationsUnitTest \
|
---|
20 | ListOfBondsUnitTest \
|
---|
21 | LogUnitTest \
|
---|
22 | MemoryUsageObserverUnitTest \
|
---|
23 | MemoryAllocatorUnitTest \
|
---|
24 | StackClassUnitTest \
|
---|
25 | TesselationUnitTest \
|
---|
26 | Tesselation_BoundaryTriangleUnitTest \
|
---|
27 | Tesselation_InOutsideUnitTest \
|
---|
28 | VectorUnitTest \
|
---|
29 | ObserverTest \
|
---|
30 | CacheableTest \
|
---|
31 | DescriptorUnittest \
|
---|
32 | manipulateAtomsTest \
|
---|
33 | atomsCalculationTest \
|
---|
34 | ${MENUTESTS}
|
---|
35 |
|
---|
36 |
|
---|
37 |
|
---|
38 |
|
---|
39 | check_PROGRAMS = $(TESTS)
|
---|
40 | noinst_PROGRAMS = $(TESTS)
|
---|
41 |
|
---|
42 | GSLLIBS = ../libgslwrapper.a
|
---|
43 | ALLLIBS = ../libmolecuilder.a ${GSLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
---|
44 |
|
---|
45 | ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
---|
46 | ActOnAllUnitTest_LDADD = ${ALLLIBS}
|
---|
47 |
|
---|
48 | AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
|
---|
49 | AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
|
---|
50 |
|
---|
51 | AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
---|
52 | AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
|
---|
53 |
|
---|
54 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
---|
55 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
|
---|
56 |
|
---|
57 | AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
---|
58 | AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
|
---|
59 |
|
---|
60 | BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
|
---|
61 | BondGraphUnitTest_LDADD = ${ALLLIBS}
|
---|
62 |
|
---|
63 | GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
|
---|
64 | GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS}
|
---|
65 |
|
---|
66 | GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp
|
---|
67 | GSLMatrixUnitTest_LDADD = ${GSLLIBS}
|
---|
68 |
|
---|
69 | GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp
|
---|
70 | GSLVectorUnitTest_LDADD = ${GSLLIBS}
|
---|
71 |
|
---|
72 | InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp
|
---|
73 | InfoUnitTest_LDADD = ${ALLLIBS}
|
---|
74 |
|
---|
75 | LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
---|
76 | LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
|
---|
77 |
|
---|
78 | ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
|
---|
79 | ListOfBondsUnitTest_LDADD = ${ALLLIBS}
|
---|
80 |
|
---|
81 | LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
|
---|
82 | LogUnitTest_LDADD = ${ALLLIBS}
|
---|
83 |
|
---|
84 | MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
|
---|
85 | MemoryAllocatorUnitTest_LDADD = ${ALLLIBS}
|
---|
86 |
|
---|
87 | MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
|
---|
88 | MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS}
|
---|
89 |
|
---|
90 | StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
|
---|
91 | StackClassUnitTest_LDADD = ${ALLLIBS}
|
---|
92 |
|
---|
93 | TesselationUnitTest_SOURCES = tesselationunittest.cpp tesselationunittest.hpp
|
---|
94 | TesselationUnitTest_LDADD = ${ALLLIBS}
|
---|
95 |
|
---|
96 | Tesselation_BoundaryTriangleUnitTest_SOURCES = tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
|
---|
97 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
|
---|
98 |
|
---|
99 | Tesselation_InOutsideUnitTest_SOURCES = tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
---|
100 | Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
|
---|
101 |
|
---|
102 | VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
|
---|
103 | VectorUnitTest_LDADD = ${ALLLIBS}
|
---|
104 |
|
---|
105 | ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp
|
---|
106 | ActionSequenceTest_LDADD = ${ALLLIBS}
|
---|
107 |
|
---|
108 | ObserverTest_SOURCES = ObserverTest.cpp ObserverTest.hpp
|
---|
109 | ObserverTest_LDADD = ${ALLLIBS}
|
---|
110 |
|
---|
111 | CacheableTest_SOURCES = CacheableTest.cpp CacheableTest.hpp
|
---|
112 | CacheableTest_LDADD = ${ALLLIBS}
|
---|
113 |
|
---|
114 | DescriptorUnittest_SOURCES = DescriptorUnittest.cpp DescriptorUnittest.hpp
|
---|
115 | DescriptorUnittest_LDADD = ${ALLLIBS}
|
---|
116 |
|
---|
117 | manipulateAtomsTest_SOURCES = manipulateAtomsTest.cpp manipulateAtomsTest.hpp
|
---|
118 | manipulateAtomsTest_LDADD = ${ALLLIBS}
|
---|
119 |
|
---|
120 | atomsCalculationTest_SOURCES = atomsCalculationTest.cpp atomsCalculationTest.hpp
|
---|
121 | atomsCalculationTest_LDADD = ${ALLLIBS}
|
---|
122 |
|
---|
123 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|
124 |
|
---|