source: src/unittests/Makefile.am@ 6c9adc

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 Candidate_v1.7.0 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 6c9adc was 6c9adc, checked in by Frederik Heber <heber@…>, 15 years ago

Moved MoleculeDescriptorTest to Descriptors/unittests/MoleculeDescriptorUnitTest.

  • Property mode set to 100644
File size: 8.2 KB
RevLine 
[18eecf]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
[c0bccb]4SUBDIRS = \
[deddf6]5 ../Actions/unittests \
[d766b5]6 ../Descriptors/unittests \
[fff54f]7 ../Helpers/unittests \
8 ../LinearAlgebra/unittests \
[0e2031]9 ../Patterns/unittests \
10 ../UIElements/Menu/unittests
[c0bccb]11
[b9907c]12INCLUDES = -I$(top_srcdir)/src
13
[831a14]14AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
15AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
[d5240d]16AM_CPPFLAGS = ${BOOST_CPPFLAGS}
[be90f1]17
[9fb860]18TESTS = \
19 AnalysisBondsUnitTests \
20 AnalysisCorrelationToPointUnitTest \
21 AnalysisCorrelationToSurfaceUnitTest \
22 AnalysisPairCorrelationUnitTest \
23 BondGraphUnitTest \
[77bc4f]24 BoxUnittest \
[dfe8ef]25 CountBondsUnitTest \
[9f632c]26 FormulaUnittest \
[45ef76]27 LineUnittest \
[dcea0f]28 LinkedCellUnitTest \
[9fb860]29 ListOfBondsUnitTest \
[57adc7]30 ObserverTest \
[4fbca9c]31 ParserCommonUnitTest \
32 ParserTremoloUnitTest \
[4eb4fe]33 periodentafelTest \
34 PlaneUnittest \
[e4afb4]35 Registry \
[997784]36 ShapeUnittest \
[b4cf2b]37 SubspaceFactorizerUnitTest \
[9fb860]38 TesselationUnitTest \
[e9c677]39 Tesselation_BoundaryTriangleUnitTest \
40 Tesselation_InOutsideUnitTest \
[bbf1bd]41 VectorContentUnitTest \
[112f90]42 VectorUnitTest
[4fbca9c]43
44
[63c1f6]45check_PROGRAMS = $(TESTS)
[9b6b2f]46noinst_PROGRAMS = $(TESTS) TestRunner
[b9907c]47
[d5240d]48BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
[952f38]49GSLLIBS = \
50 ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
51 ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
52 ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
[e4decc]53 $(BOOST_LIB)
[f4b5b7]54ALLLIBS = \
[9ee38b]55 ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
[f4b5b7]56 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
[952f38]57 ${PARSERLIBS} \
[255971]58 ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
[e4decc]59 ${GSLLIBS}
60
[b37436]61PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
62UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
[4d9c01]63
[9b6b2f]64TESTSOURCES = \
[deddf6]65 ../Actions/unittests/ActionRegistryUnitTest.cpp \
[f7c0c4]66 ../Actions/unittests/ActionSequenceUnitTest.cpp \
[9b6b2f]67 analysisbondsunittest.cpp \
68 AnalysisCorrelationToPointUnitTest.cpp \
69 AnalysisCorrelationToSurfaceUnitTest.cpp \
70 AnalysisPairCorrelationUnitTest.cpp \
[d766b5]71 ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \
[3c8e8b]72 ../Actions/unittests/AtomsCalculationUnitTest.cpp \
[9b6b2f]73 bondgraphunittest.cpp \
[77bc4f]74 BoxUnittest.cpp \
[e7da1f]75 ../Patterns/unittests/CacheableUnitTest.cpp \
[5f612ee]76 CountBondsUnitTest.cpp \
[9f632c]77 FormulaUnittest.cpp \
[fff54f]78 ../Helpers/unittests/InfoUnitTest.cpp \
[78b593]79 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.cpp \
[45ef76]80 LineUnittest.cpp \
[5f612ee]81 LinkedCellUnitTest.cpp \
[9b6b2f]82 listofbondsunittest.cpp \
[4076fcc]83 ../Helpers/unittests/LogUnitTest.cpp \
[efd61b]84 ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
[fff54f]85 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.cpp \
86 ../LinearAlgebra/unittests/MatrixContentUnitTest.cpp \
87 ../LinearAlgebra/unittests/MatrixUnitTest.cpp \
[0e2031]88 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
[6c9adc]89 ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \
[57adc7]90 ObserverTest.cpp \
[4fbca9c]91 ParserCommonUnitTest.cpp \
92 ParserTremoloUnitTest.cpp \
[4eb4fe]93 periodentafelTest.cpp \
94 PlaneUnittest.cpp \
[e4afb4]95 RegistryUnitTest.cpp \
[997784]96 ShapeUnittest.cpp \
[c0bccb]97 ../Patterns/unittests/SingletonUnitTest.cpp \
[9b6b2f]98 tesselationunittest.cpp \
99 tesselation_boundarytriangleunittest.cpp \
100 tesselation_insideoutsideunittest.cpp \
[bbf1bd]101 VectorContentUnittest.cpp \
[57adc7]102 vectorunittest.cpp
[9b6b2f]103
104TESTHEADERS = \
[deddf6]105 ../Actions/unittests/ActionRegistryUnitTest.hpp \
[f7c0c4]106 ../Actions/unittests/ActionSequenceUnitTest.hpp \
[5f612ee]107 analysisbondsunittest.hpp \
108 AnalysisCorrelationToPointUnitTest.hpp \
109 AnalysisCorrelationToSurfaceUnitTest.hpp \
110 AnalysisPairCorrelationUnitTest.hpp \
[d766b5]111 ../Descriptors/unittests/AtomDescriptorUnitTest.hpp \
[3c8e8b]112 ../Actions/unittests/AtomsCalculationUnitTest.hpp \
[5f612ee]113 bondgraphunittest.hpp \
[77bc4f]114 BoxUnittest.hpp \
[e7da1f]115 ../Patterns/unittests/CacheableUnitTest.hpp \
[5f612ee]116 CountBondsUnitTest.hpp \
[9f632c]117 FormulaUnittest.hpp \
[78b593]118 ../Helpers/unittests/InfoUnitTest.hpp \
119 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.hpp \
[45ef76]120 LineUnittest.hpp \
[5f612ee]121 LinkedCellUnitTest.hpp \
122 listofbondsunittest.hpp \
[4076fcc]123 ../Helpers/unittests/LogUnitTest.hpp \
[efd61b]124 ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
[fff54f]125 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.hpp \
126 ../LinearAlgebra/unittests/MatrixContentUnitTest.hpp \
127 ../LinearAlgebra/unittests/MatrixUnitTest.hpp \
[0e2031]128 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
[6c9adc]129 ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp \
[e4afb4]130 ObserverTest.hpp \
[4eb4fe]131 periodentafelTest.hpp \
[4fbca9c]132 ParserCommonUnitTest.hpp \
133 ParserTremoloUnitTest.hpp \
[fa5a6a]134 PlaneUnittest.hpp \
[e4afb4]135 RegistryUnitTest.hpp \
[c0bccb]136 ShapeUnittest.hpp \
137 ../Patterns/unittests/SingletonUnitTest.hpp \
138 stackclassunittest.hpp \
[5f612ee]139 tesselationunittest.hpp \
140 tesselation_boundarytriangleunittest.hpp \
141 tesselation_insideoutsideunittest.hpp \
[bbf1bd]142 VectorContentUnittest.hpp \
[5f612ee]143 vectorunittest.hpp
[9fb860]144
[9b6b2f]145
146AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
[4d9c01]147AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
[96c961]148
[9b6b2f]149AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
[4d9c01]150AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
[c4d4df]151
[9b6b2f]152AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
[4d9c01]153AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
[c4d4df]154
[9b6b2f]155AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
[4d9c01]156AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
[c111db]157
[9b6b2f]158BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
[4d9c01]159BondGraphUnitTest_LDADD = ${ALLLIBS}
[46ea3b]160
[77bc4f]161BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
162BoxUnittest_LDADD = ${ALLLIBS}
163
[5f612ee]164CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
165CountBondsUnitTest_LDADD = ${ALLLIBS}
166
[9f632c]167FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
168FormulaUnittest_LDADD = ${ALLLIBS}
169
[45ef76]170LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
171LineUnittest_LDADD = ${ALLLIBS}
172
[4fbca9c]173LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
[5f612ee]174LinkedCellUnitTest_LDADD = ${ALLLIBS}
[46ea3b]175
[9b6b2f]176ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
[4d9c01]177ListOfBondsUnitTest_LDADD = ${ALLLIBS}
[266237]178
[18eecf]179ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
180ObserverTest_LDADD = ${ALLLIBS}
181
[4fbca9c]182ParserCommonUnitTest_SOURCES = UnitTestMain.cpp ParserCommonUnitTest.cpp ParserCommonUnitTest.hpp
183ParserCommonUnitTest_LDADD = ${ALLLIBS}
184
185ParserTremoloUnitTest_SOURCES = UnitTestMain.cpp ParserTremoloUnitTest.cpp ParserTremoloUnitTest.hpp
186ParserTremoloUnitTest_LDADD = ${ALLLIBS}
[18eecf]187
[4eb4fe]188periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
189periodentafelTest_LDADD = ${ALLLIBS}
190
[fa5a6a]191PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
192PlaneUnittest_LDADD = ${ALLLIBS}
193
[e4afb4]194Registry_SOURCES = UnitTestMain.cpp RegistryUnitTest.cpp RegistryUnitTest.hpp
195Registry_LDADD = ${ALLLIBS}
196
[997784]197ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
198ShapeUnittest_LDADD = ${ALLLIBS}
199
[b4cf2b]200SubspaceFactorizerUnitTest_SOURCES = UnitTestMain.cpp SubspaceFactorizerUnittest.cpp SubspaceFactorizerUnittest.hpp
[5eec98]201SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
[b4cf2b]202
[9b6b2f]203TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
[4d9c01]204TesselationUnitTest_LDADD = ${ALLLIBS}
[c15ca2]205
[9b6b2f]206Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
[4d9c01]207Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
[e9c677]208
[9b6b2f]209Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
[4d9c01]210Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
[d96277]211
[36166d]212TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
[b37436]213TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
[7a1ce5]214
[bbf1bd]215VectorContentUnitTest_SOURCES = UnitTestMain.cpp VectorContentUnittest.cpp VectorContentUnittest.hpp
216VectorContentUnitTest_LDADD = ${ALLLIBS}
217
[18eecf]218VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
219VectorUnitTest_LDADD = ${ALLLIBS}
[7326b2]220
[18eecf]221#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.