source: src/unittests/Makefile.am@ 57f243

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 57f243 was 57f243, checked in by Frederik Heber <heber@…>, 14 years ago

Created libMolecuilderLinearAlgebra.

  • is shared.
  • contains the following classes: Line, Plane, Space, Vector, Matrix, gslvector, gslmatrix, linearsystemofequations
  • had to change include path almost everywhere
  • change linkin in src/ and src/unittests/Makefile.am
  • Property mode set to 100644
File size: 9.5 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 BondGraphUnitTest \
19 BoxUnittest \
20 CacheableTest \
21 CountBondsUnitTest \
22 FormulaUnittest \
23 GSLMatrixSymmetricUnitTest \
24 GSLMatrixUnitTest \
25 GSLVectorUnitTest \
26 InfoUnitTest \
27 LinearSystemOfEquationsUnitTest \
28 LineUnittest \
29 LinkedCellUnitTest \
30 ListOfBondsUnitTest \
31 LogUnitTest \
32 manipulateAtomsTest \
33 MatrixUnittest \
34 MoleculeDescriptorTest \
35 ObserverTest \
36 ParserUnitTest \
37 periodentafelTest \
38 PlaneUnittest \
39 ShapeUnittest \
40 SingletonTest \
41 StackClassUnitTest \
42 TesselationUnitTest \
43 Tesselation_BoundaryTriangleUnitTest \
44 Tesselation_InOutsideUnitTest \
45 VectorUnitTest
46
47
48check_PROGRAMS = $(TESTS)
49noinst_PROGRAMS = $(TESTS) TestRunner
50
51GSLLIBS = ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la $(BOOST_LIB) ${BOOST_THREAD_LIB}
52ALLLIBS = \
53 ../UIElements/libMolecuilderUI.a \
54 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
55 ../libmolecuilder.a \
56 ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la \
57 ${GSLLIBS} \
58 ${BOOST_PROGRAM_OPTIONS_LIB}
59
60PARSERLIBS = ${ALLLIBS}
61
62TESTSOURCES = \
63 ActOnAllUnitTest.cpp \
64 ActionSequenceTest.cpp \
65 analysisbondsunittest.cpp \
66 AnalysisCorrelationToPointUnitTest.cpp \
67 AnalysisCorrelationToSurfaceUnitTest.cpp \
68 AnalysisPairCorrelationUnitTest.cpp \
69 AtomDescriptorTest.cpp \
70 atomsCalculationTest.cpp \
71 bondgraphunittest.cpp \
72 BoxUnittest.cpp \
73 CacheableTest.cpp \
74 CountBondsUnitTest.cpp \
75 FormulaUnittest.cpp \
76 gslmatrixsymmetricunittest.cpp \
77 gslmatrixunittest.cpp \
78 gslvectorunittest.cpp \
79 infounittest.cpp \
80 linearsystemofequationsunittest.cpp \
81 LineUnittest.cpp \
82 LinkedCellUnitTest.cpp \
83 listofbondsunittest.cpp \
84 logunittest.cpp \
85 MatrixUnittest.cpp \
86 manipulateAtomsTest.cpp \
87 MoleculeDescriptorTest.cpp \
88 ObserverTest.cpp \
89 ParserUnitTest.cpp \
90 periodentafelTest.cpp \
91 PlaneUnittest.cpp \
92 ShapeUnittest.cpp \
93 SingletonTest.cpp \
94 stackclassunittest.cpp \
95 tesselationunittest.cpp \
96 tesselation_boundarytriangleunittest.cpp \
97 tesselation_insideoutsideunittest.cpp \
98 vectorunittest.cpp
99
100TESTHEADERS = \
101 ActOnAllUnitTest.hpp \
102 ActionSequenceTest.hpp \
103 analysisbondsunittest.hpp \
104 AnalysisCorrelationToPointUnitTest.hpp \
105 AnalysisCorrelationToSurfaceUnitTest.hpp \
106 AnalysisPairCorrelationUnitTest.hpp \
107 AtomDescriptorTest.hpp \
108 atomsCalculationTest.hpp \
109 bondgraphunittest.hpp \
110 BoxUnittest.hpp \
111 CacheableTest.hpp \
112 CountBondsUnitTest.hpp \
113 FormulaUnittest.hpp \
114 gslmatrixsymmetricunittest.hpp \
115 gslmatrixunittest.hpp \
116 gslvectorunittest.hpp \
117 infounittest.hpp \
118 linearsystemofequationsunittest.hpp \
119 LineUnittest.hpp \
120 LinkedCellUnitTest.hpp \
121 listofbondsunittest.hpp \
122 logunittest.hpp \
123 manipulateAtomsTest.hpp \
124 MatrixUnittest.hpp \
125 MoleculeDescriptorTest.hpp \
126 periodentafelTest.hpp \
127 PlaneUnittest.hpp \
128 ObserverTest.hpp \
129 SingletonTest.hpp \
130 stackclassunittest.hpp \
131 tesselationunittest.hpp \
132 tesselation_boundarytriangleunittest.hpp \
133 tesselation_insideoutsideunittest.hpp \
134 vectorunittest.hpp
135
136
137ActionSequenceTest_SOURCES = UnitTestMain.cpp ActionSequenceTest.cpp ActionSequenceTest.hpp
138ActionSequenceTest_LDADD = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ../libparser.a ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
139
140ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
141ActOnAllUnitTest_LDADD = ${ALLLIBS}
142
143AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
144AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
145
146AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
147AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
148
149AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
150AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
151
152AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
153AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
154
155atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
156atomsCalculationTest_LDADD = ${ALLLIBS}
157
158AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
159AtomDescriptorTest_LDADD = ${ALLLIBS}
160
161BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
162BondGraphUnitTest_LDADD = ${ALLLIBS}
163
164BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
165BoxUnittest_LDADD = ${ALLLIBS}
166
167CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
168CacheableTest_LDADD = ${ALLLIBS}
169
170CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
171CountBondsUnitTest_LDADD = ${ALLLIBS}
172
173FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
174FormulaUnittest_LDADD = ${ALLLIBS}
175
176GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
177GSLMatrixSymmetricUnitTest_LDADD = ${ALLLIBS}
178
179GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
180GSLMatrixUnitTest_LDADD = ${ALLLIBS}
181
182GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
183GSLVectorUnitTest_LDADD = ${ALLLIBS}
184
185InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
186InfoUnitTest_LDADD = ${ALLLIBS}
187
188LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
189LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
190
191LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
192LineUnittest_LDADD = ${ALLLIBS}
193
194LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
195LinkedCellUnitTest_LDADD = ${ALLLIBS}
196
197ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
198ListOfBondsUnitTest_LDADD = ${ALLLIBS}
199
200LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
201LogUnitTest_LDADD = ${ALLLIBS}
202
203manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
204manipulateAtomsTest_LDADD = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ../libparser.a ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
205
206MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp
207MatrixUnittest_LDADD = ${ALLLIBS}
208
209MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
210MoleculeDescriptorTest_LDADD = ${ALLLIBS}
211
212ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
213ObserverTest_LDADD = ${ALLLIBS}
214
215ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp
216ParserUnitTest_LDADD = ${PARSERLIBS}
217
218periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
219periodentafelTest_LDADD = ${ALLLIBS}
220
221PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
222PlaneUnittest_LDADD = ${ALLLIBS}
223
224ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
225ShapeUnittest_LDADD = ${ALLLIBS}
226
227SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
228SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
229
230StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
231StackClassUnitTest_LDADD = ${ALLLIBS}
232
233TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
234TesselationUnitTest_LDADD = ${ALLLIBS}
235
236Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
237Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
238
239Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
240Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
241
242TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
243TestRunner_LDADD = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ../libparser.a ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
244
245VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
246VectorUnitTest_LDADD = ${ALLLIBS}
247
248#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.