source: src/unittests/Makefile.am@ 13e3c3

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 13e3c3 was c5186e, checked in by Frederik Heber <heber@…>, 14 years ago

Added getHomogenousPointsOnSurface() function to Shapes.

  • missing is so far: AndShape_impl which is not trivial, as surface is inside of both probably (ASSERT(false,...) present).
  • missing also (although trivial): Cuboid_impl (ASSERT(false,...) present).
  • Property mode set to 100644
File size: 8.9 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4INCLUDES = -I$(top_srcdir)/src
5
6AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
7AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
8
9TESTS = \
10 ActionSequenceTest \
11 ActOnAllUnitTest \
12 AnalysisBondsUnitTests \
13 AnalysisCorrelationToPointUnitTest \
14 AnalysisCorrelationToSurfaceUnitTest \
15 AnalysisPairCorrelationUnitTest \
16 atomsCalculationTest \
17 AtomDescriptorTest \
18 BaseShapesUnitTest \
19 BondGraphUnitTest \
20 BoxUnittest \
21 CacheableTest \
22 CountBondsUnitTest \
23 FormulaUnittest \
24 GSLMatrixSymmetricUnitTest \
25 GSLMatrixUnitTest \
26 GSLVectorUnitTest \
27 InfoUnitTest \
28 LinearSystemOfEquationsUnitTest \
29 LineUnittest \
30 LinkedCellUnitTest \
31 ListOfBondsUnitTest \
32 LogUnitTest \
33 manipulateAtomsTest \
34 MatrixUnittest \
35 MoleculeDescriptorTest \
36 ObserverTest \
37 ParserUnitTest \
38 periodentafelTest \
39 PlaneUnittest \
40 ShapeUnittest \
41 SingletonTest \
42 StackClassUnitTest \
43 TesselationUnitTest \
44 Tesselation_BoundaryTriangleUnitTest \
45 Tesselation_InOutsideUnitTest \
46 VectorUnitTest
47
48
49check_PROGRAMS = $(TESTS)
50noinst_PROGRAMS = $(TESTS) TestRunner
51
52GSLLIBS = \
53 ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
54 ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
55 ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
56 $(BOOST_LIB) \
57 ${BOOST_THREAD_LIB}
58ALLLIBS = \
59 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
60 ${PARSERLIBS} \
61 ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
62 ${GSLLIBS} \
63 ${BOOST_PROGRAM_OPTIONS_LIB}
64PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
65UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
66
67TESTSOURCES = \
68 ActOnAllUnitTest.cpp \
69 ActionSequenceTest.cpp \
70 analysisbondsunittest.cpp \
71 AnalysisCorrelationToPointUnitTest.cpp \
72 AnalysisCorrelationToSurfaceUnitTest.cpp \
73 AnalysisPairCorrelationUnitTest.cpp \
74 AtomDescriptorTest.cpp \
75 atomsCalculationTest.cpp \
76 BaseShapesUnittest.cpp \
77 bondgraphunittest.cpp \
78 BoxUnittest.cpp \
79 CacheableTest.cpp \
80 CountBondsUnitTest.cpp \
81 FormulaUnittest.cpp \
82 gslmatrixsymmetricunittest.cpp \
83 gslmatrixunittest.cpp \
84 gslvectorunittest.cpp \
85 infounittest.cpp \
86 linearsystemofequationsunittest.cpp \
87 LineUnittest.cpp \
88 LinkedCellUnitTest.cpp \
89 listofbondsunittest.cpp \
90 logunittest.cpp \
91 MatrixUnittest.cpp \
92 manipulateAtomsTest.cpp \
93 MoleculeDescriptorTest.cpp \
94 ObserverTest.cpp \
95 ParserUnitTest.cpp \
96 periodentafelTest.cpp \
97 PlaneUnittest.cpp \
98 ShapeUnittest.cpp \
99 SingletonTest.cpp \
100 stackclassunittest.cpp \
101 tesselationunittest.cpp \
102 tesselation_boundarytriangleunittest.cpp \
103 tesselation_insideoutsideunittest.cpp \
104 vectorunittest.cpp
105
106TESTHEADERS = \
107 ActOnAllUnitTest.hpp \
108 ActionSequenceTest.hpp \
109 analysisbondsunittest.hpp \
110 AnalysisCorrelationToPointUnitTest.hpp \
111 AnalysisCorrelationToSurfaceUnitTest.hpp \
112 AnalysisPairCorrelationUnitTest.hpp \
113 AtomDescriptorTest.hpp \
114 atomsCalculationTest.hpp \
115 BaseShapesUnittest.hpp \
116 bondgraphunittest.hpp \
117 BoxUnittest.hpp \
118 CacheableTest.hpp \
119 CountBondsUnitTest.hpp \
120 FormulaUnittest.hpp \
121 gslmatrixsymmetricunittest.hpp \
122 gslmatrixunittest.hpp \
123 gslvectorunittest.hpp \
124 infounittest.hpp \
125 linearsystemofequationsunittest.hpp \
126 LineUnittest.hpp \
127 LinkedCellUnitTest.hpp \
128 listofbondsunittest.hpp \
129 logunittest.hpp \
130 manipulateAtomsTest.hpp \
131 MatrixUnittest.hpp \
132 MoleculeDescriptorTest.hpp \
133 periodentafelTest.hpp \
134 ParserUnitTest.hpp \
135 PlaneUnittest.hpp \
136 ObserverTest.hpp \
137 SingletonTest.hpp \
138 stackclassunittest.hpp \
139 tesselationunittest.hpp \
140 tesselation_boundarytriangleunittest.hpp \
141 tesselation_insideoutsideunittest.hpp \
142 vectorunittest.hpp
143
144
145ActionSequenceTest_SOURCES = UnitTestMain.cpp ActionSequenceTest.cpp ActionSequenceTest.hpp
146ActionSequenceTest_LDADD = ${UILIBS} ${ALLLIBS}
147
148ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
149ActOnAllUnitTest_LDADD = ${ALLLIBS}
150
151AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
152AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
153
154AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
155AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
156
157AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
158AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
159
160AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
161AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
162
163atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
164atomsCalculationTest_LDADD = ${ALLLIBS}
165
166AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
167AtomDescriptorTest_LDADD = ${ALLLIBS}
168
169BaseShapesUnitTest_SOURCES = UnitTestMain.cpp BaseShapesUnittest.cpp BaseShapesUnittest.hpp
170BaseShapesUnitTest_LDADD = ${ALLLIBS}
171
172BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
173BondGraphUnitTest_LDADD = ${ALLLIBS}
174
175BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
176BoxUnittest_LDADD = ${ALLLIBS}
177
178CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
179CacheableTest_LDADD = ${ALLLIBS}
180
181CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
182CountBondsUnitTest_LDADD = ${ALLLIBS}
183
184FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
185FormulaUnittest_LDADD = ${ALLLIBS}
186
187GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
188GSLMatrixSymmetricUnitTest_LDADD = ${ALLLIBS}
189
190GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
191GSLMatrixUnitTest_LDADD = ${ALLLIBS}
192
193GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
194GSLVectorUnitTest_LDADD = ${ALLLIBS}
195
196InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
197InfoUnitTest_LDADD = ${ALLLIBS}
198
199LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
200LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
201
202LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
203LineUnittest_LDADD = ${ALLLIBS}
204
205LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
206LinkedCellUnitTest_LDADD = ${ALLLIBS}
207
208ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
209ListOfBondsUnitTest_LDADD = ${ALLLIBS}
210
211LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
212LogUnitTest_LDADD = ${ALLLIBS}
213
214manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
215manipulateAtomsTest_LDADD = ${UILIBS} ${ALLLIBS}
216
217MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp
218MatrixUnittest_LDADD = ${ALLLIBS}
219
220MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
221MoleculeDescriptorTest_LDADD = ${ALLLIBS}
222
223ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
224ObserverTest_LDADD = ${ALLLIBS}
225
226ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp
227ParserUnitTest_LDADD = ${ALLLIBS}
228
229periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
230periodentafelTest_LDADD = ${ALLLIBS}
231
232PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
233PlaneUnittest_LDADD = ${ALLLIBS}
234
235ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
236ShapeUnittest_LDADD = ${ALLLIBS}
237
238SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
239SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
240
241StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
242StackClassUnitTest_LDADD = ${ALLLIBS}
243
244TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
245TesselationUnitTest_LDADD = ${ALLLIBS}
246
247Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
248Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
249
250Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
251Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
252
253TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
254TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
255
256VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
257VectorUnitTest_LDADD = ${ALLLIBS}
258
259#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.