Changeset 36bb2d for src/Fragmentation/Summation/unittests/Makefile.am
- Timestamp:
- Nov 20, 2012, 11:04:12 AM (13 years ago)
- Branches:
- 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
- Children:
- a22e05
- Parents:
- cebac0 (diff), a1436b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/Fragmentation/Summation/unittests/Makefile.am (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Summation/unittests/Makefile.am
rcebac0 r36bb2d 8 8 ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \ 9 9 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \ 10 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp 10 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \ 11 ../Fragmentation/Summation/unittests/SummationUnitTest.cpp 11 12 12 13 FRAGMENTATIONSUMMATIONTESTSHEADERS = \ … … 16 17 ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \ 17 18 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp \ 18 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp 19 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp \ 20 ../Fragmentation/Summation/unittests/SummationUnitTest.hpp 19 21 20 22 FRAGMENTATIONSUMMATIONTESTS = \ … … 24 26 SetValueUnitTest \ 25 27 SetValueMapUnitTest \ 26 SubsetMapUnitTest 28 SubsetMapUnitTest \ 29 SummationUnitTest 27 30 28 31 TESTS += $(FRAGMENTATIONSUMMATIONTESTS) … … 44 47 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \ 45 48 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp 46 IndexSetContainerUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} 49 IndexSetContainerUnitTest_LDADD = \ 50 ../libMolecuilderFragmentation.la \ 51 ../libMolecuilderHelpers.la \ 52 ${FRAGMENTATIONSUMMATIONLIBS} 47 53 48 54 OrthogonalSummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 49 55 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \ 50 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp 56 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \ 57 ../Fragmentation/Summation/OrthogonalSummation.hpp \ 58 ../Fragmentation/Summation/OrthogonalSummation_impl.hpp 51 59 OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} 52 60 … … 68 76 SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} 69 77 78 SummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 79 ../Fragmentation/Summation/unittests/SummationUnitTest.cpp \ 80 ../Fragmentation/Summation/unittests/SummationUnitTest.hpp \ 81 ../Fragmentation/Summation/Summation.hpp \ 82 ../Fragmentation/Summation/Summation_impl.hpp 83 SummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} 84 70 85 71 86 #AUTOMAKE_OPTIONS = parallel-tests
Note:
See TracChangeset
for help on using the changeset viewer.
