source: src/unittests/Makefile.am@ 0e2031

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 0e2031 was 0e2031, checked in by Frederik Heber <heber@…>, 15 years ago

Moved MenuDescriptionUnitTest to UIElements/Menu/unittests.

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