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