source: src/unittests/Makefile.am@ dc031c

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

Moved stuff in src/Helpers and src/Patterns out to stand-alone project CodePatterns.

Makefile.am's:

  • CodePatterns added to AM_LDFLAGS and AM_CFLAGS
  • libMoleCuilderHelpers removed

Helpers/...

  • defs.hpp include prefixed with Helpers/
  • helpers.?pp removed lots of old, unused functions: bound, ask_value, ...
  • fast_functions.hpp has lots of functions removed as well.
  • all other files and unit tests moved to project CodePatterns.

Patterns/...

  • added ax_codepatterns.m4 containing AM_PATH_CODEPATTERNS to configure.ac
  • Property mode set to 100644
File size: 7.3 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 ../LinearAlgebra/unittests \
[41396a]8 ../Parser/unittests \
[0e2031]9 ../UIElements/Menu/unittests
[c0bccb]10
[b9907c]11INCLUDES = -I$(top_srcdir)/src
12
[a0064e]13AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
14AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
[be90f1]15
[9fb860]16TESTS = \
[f844ef]17 AnalysisBondsUnitTest \
[9fb860]18 AnalysisCorrelationToPointUnitTest \
19 AnalysisCorrelationToSurfaceUnitTest \
20 AnalysisPairCorrelationUnitTest \
21 BondGraphUnitTest \
[f844ef]22 BoxUnitTest \
[dfe8ef]23 CountBondsUnitTest \
[9f632c]24 FormulaUnittest \
[dcea0f]25 LinkedCellUnitTest \
[9fb860]26 ListOfBondsUnitTest \
[f844ef]27 PeriodentafelUnitTest \
[b4cf2b]28 SubspaceFactorizerUnitTest \
[9fb860]29 TesselationUnitTest \
[e9c677]30 Tesselation_BoundaryTriangleUnitTest \
[dfafe7]31 Tesselation_InOutsideUnitTest
[4fbca9c]32
33
[63c1f6]34check_PROGRAMS = $(TESTS)
[9b6b2f]35noinst_PROGRAMS = $(TESTS) TestRunner
[b9907c]36
[d5240d]37BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
[952f38]38GSLLIBS = \
39 ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
40 ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
[e4decc]41 $(BOOST_LIB)
[f4b5b7]42ALLLIBS = \
[9ee38b]43 ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
[f4b5b7]44 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
[952f38]45 ${PARSERLIBS} \
[255971]46 ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
[e4decc]47 ${GSLLIBS}
48
[b37436]49PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
50UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
[4d9c01]51
[9b6b2f]52TESTSOURCES = \
[deddf6]53 ../Actions/unittests/ActionRegistryUnitTest.cpp \
[f7c0c4]54 ../Actions/unittests/ActionSequenceUnitTest.cpp \
[f844ef]55 AnalysisBondsUnitTest.cpp \
[9b6b2f]56 AnalysisCorrelationToPointUnitTest.cpp \
57 AnalysisCorrelationToSurfaceUnitTest.cpp \
58 AnalysisPairCorrelationUnitTest.cpp \
[d766b5]59 ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \
[3c8e8b]60 ../Actions/unittests/AtomsCalculationUnitTest.cpp \
[f844ef]61 BondGraphUnitTest.cpp \
62 BoxUnitTest.cpp \
[5f612ee]63 CountBondsUnitTest.cpp \
[f844ef]64 FormulaUnitTest.cpp \
[78b593]65 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.cpp \
[f89024]66 ../LinearAlgebra/unittests/LineUnitTest.cpp \
[5f612ee]67 LinkedCellUnitTest.cpp \
[f844ef]68 ListOfBondsUnitTest.cpp \
[efd61b]69 ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
[fff54f]70 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.cpp \
71 ../LinearAlgebra/unittests/MatrixContentUnitTest.cpp \
72 ../LinearAlgebra/unittests/MatrixUnitTest.cpp \
[0e2031]73 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
[6c9adc]74 ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \
[41396a]75 ../Parser/unittests/ParserCommonUnitTest.cpp \
76 ../Parser/unittests/ParserTremoloUnitTest.cpp \
[f844ef]77 PeriodentafelUnitTest.cpp \
[5bc8229]78 ../LinearAlgebra/unittests/PlaneUnitTest.cpp \
[0b3cbdf]79 ../Shapes/unittests/ShapeUnitTest.cpp \
[f844ef]80 TesselationUnitTest.cpp \
81 Tesselation_BoundaryTriangleUnitTest.cpp \
82 Tesselation_InsideOutsideUnitTest.cpp \
[dfafe7]83 ../LinearAlgebra/unittests/VectorContentUnitTest.cpp \
84 ../LinearAlgebra/unittests/VectorUnitTest.cpp
[9b6b2f]85
86TESTHEADERS = \
[deddf6]87 ../Actions/unittests/ActionRegistryUnitTest.hpp \
[f7c0c4]88 ../Actions/unittests/ActionSequenceUnitTest.hpp \
[f844ef]89 AnalysisBondsUnitTest.hpp \
[5f612ee]90 AnalysisCorrelationToPointUnitTest.hpp \
91 AnalysisCorrelationToSurfaceUnitTest.hpp \
92 AnalysisPairCorrelationUnitTest.hpp \
[d766b5]93 ../Descriptors/unittests/AtomDescriptorUnitTest.hpp \
[3c8e8b]94 ../Actions/unittests/AtomsCalculationUnitTest.hpp \
[f844ef]95 BondGraphUnitTest.hpp \
96 BoxUnitTest.hpp \
[5f612ee]97 CountBondsUnitTest.hpp \
[f844ef]98 FormulaUnitTest.hpp \
[78b593]99 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.hpp \
[f89024]100 ../LinearAlgebra/unittests/LineUnitTest.hpp \
[5f612ee]101 LinkedCellUnitTest.hpp \
[f844ef]102 ListOfBondsUnitTest.hpp \
[efd61b]103 ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
[fff54f]104 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.hpp \
105 ../LinearAlgebra/unittests/MatrixContentUnitTest.hpp \
106 ../LinearAlgebra/unittests/MatrixUnitTest.hpp \
[0e2031]107 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
[6c9adc]108 ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp \
[41396a]109 ../Parser/unittests/ParserCommonUnitTest.hpp \
110 ../Parser/unittests/ParserTremoloUnitTest.hpp \
[f844ef]111 PeriodentafelUnitTest.hpp \
[5bc8229]112 ../LinearAlgebra/unittests/PlaneUnitTest.hpp \
[0b3cbdf]113 ../Shapes/unittests/ShapeUnitTest.hpp \
[f844ef]114 TesselationUnitTest.hpp \
115 Tesselation_BoundaryTriangleUnitTest.hpp \
116 Tesselation_InsideOutsideUnitTest.hpp \
[dfafe7]117 ../LinearAlgebra/unittests/VectorContentUnitTest.hpp \
118 ../LinearAlgebra/unittests/VectorUnitTest.hpp
[9fb860]119
[9b6b2f]120
[f844ef]121AnalysisBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
122 AnalysisBondsUnitTest.cpp \
123 AnalysisBondsUnitTest.hpp
124AnalysisBondsUnitTest_LDADD = ${ALLLIBS}
[96c961]125
[f844ef]126AnalysisCorrelationToPointUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
127 analysis_correlation.hpp \
128 AnalysisCorrelationToPointUnitTest.cpp \
129 AnalysisCorrelationToPointUnitTest.hpp
[4d9c01]130AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
[c4d4df]131
[f844ef]132AnalysisCorrelationToSurfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
133 analysis_correlation.hpp \
134 AnalysisCorrelationToSurfaceUnitTest.cpp \
135 AnalysisCorrelationToSurfaceUnitTest.hpp
[4d9c01]136AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
[c4d4df]137
[f844ef]138AnalysisPairCorrelationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
139 analysis_correlation.hpp \
140 AnalysisPairCorrelationUnitTest.cpp \
141 AnalysisPairCorrelationUnitTest.hpp
[4d9c01]142AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
[c111db]143
[f844ef]144BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
145 BondGraphUnitTest.cpp \
146 BondGraphUnitTest.hpp
[4d9c01]147BondGraphUnitTest_LDADD = ${ALLLIBS}
[46ea3b]148
[f844ef]149BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
150 BoxUnitTest.cpp \
151 BoxUnitTest.hpp
152BoxUnitTest_LDADD = ${ALLLIBS}
[77bc4f]153
[f844ef]154CountBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
155 CountBondsUnitTest.cpp \
156 CountBondsUnitTest.hpp
[5f612ee]157CountBondsUnitTest_LDADD = ${ALLLIBS}
158
[f844ef]159FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
160 FormulaUnitTest.cpp \
161 FormulaUnitTest.hpp
[9f632c]162FormulaUnittest_LDADD = ${ALLLIBS}
163
[f844ef]164LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
165 LinkedCellUnitTest.cpp \
166 LinkedCellUnitTest.hpp
[5f612ee]167LinkedCellUnitTest_LDADD = ${ALLLIBS}
[46ea3b]168
[f844ef]169ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
170 ListOfBondsUnitTest.cpp \
171 ListOfBondsUnitTest.hpp
[4d9c01]172ListOfBondsUnitTest_LDADD = ${ALLLIBS}
[266237]173
[f844ef]174PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
175 PeriodentafelUnitTest.cpp \
176 PeriodentafelUnitTest.hpp
177PeriodentafelUnitTest_LDADD = ${ALLLIBS}
[4eb4fe]178
[f844ef]179SubspaceFactorizerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
180 SubspaceFactorizerUnitTest.cpp \
181 SubspaceFactorizerUnitTest.hpp
[5eec98]182SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
[b4cf2b]183
[f844ef]184TesselationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
185 TesselationUnitTest.cpp \
186 TesselationUnitTest.hpp
[4d9c01]187TesselationUnitTest_LDADD = ${ALLLIBS}
[c15ca2]188
[f844ef]189Tesselation_BoundaryTriangleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
190 Tesselation_BoundaryTriangleUnitTest.cpp \
191 Tesselation_BoundaryTriangleUnitTest.hpp
[4d9c01]192Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
[e9c677]193
[f844ef]194Tesselation_InOutsideUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
195 Tesselation_InsideOutsideUnitTest.cpp \
196 Tesselation_InsideOutsideUnitTest.hpp
[4d9c01]197Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
[d96277]198
[36166d]199TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
[b37436]200TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
[7a1ce5]201
[18eecf]202#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.