source: src/Parser/Parameters/unittests/Makefile.am@ 89a67f

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 89a67f was 89a67f, checked in by Frederik Heber <heber@…>, 13 years ago

Added StringParameter as ContinuousParameter<string> as string do not have any sensible valid range.

  • Property mode set to 100644
File size: 4.1 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4
5PARSERPARAMETERSTESTSSOURCES = \
6 ../Parser/Parameters/unittests/ContinuousValueUnitTest.cpp \
7 ../Parser/Parameters/unittests/ContinuousParameterUnitTest.cpp \
8 ../Parser/Parameters/unittests/DiscreteValueUnitTest.cpp \
9 ../Parser/Parameters/unittests/DiscreteParameterUnitTest.cpp \
10 ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
11 ../Parser/Parameters/unittests/StringParameterUnitTest.cpp
12
13PARSERPARAMETERSTESTSHEADERS = \
14 ../Parser/Parameters/unittests/ContinuousValueUnitTest.hpp \
15 ../Parser/Parameters/unittests/ContinuousParameterUnitTest.hpp \
16 ../Parser/Parameters/unittests/DiscreteValueUnitTest.hpp \
17 ../Parser/Parameters/unittests/DiscreteParameterUnitTest.hpp \
18 ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
19 ../Parser/Parameters/unittests/StringParameterUnitTest.hpp
20
21PARSERPARAMETERSTESTS = \
22 ContinuousValueUnitTest \
23 ContinuousParameterUnitTest \
24 DiscreteValueUnitTest \
25 DiscreteParameterUnitTest \
26 ParameterStorageUnitTest \
27 StringParameterUnitTest
28
29TESTS += $(PARSERPARAMETERSTESTS)
30check_PROGRAMS += $(PARSERPARAMETERSTESTS)
31noinst_PROGRAMS += $(PARSERPARAMETERSTESTS)
32
33PARSERPARAMETERSLIBS =
34
35
36ContinuousValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
37 ../Parser/Parameters/unittests/ContinuousValueUnitTest.cpp \
38 ../Parser/Parameters/unittests/ContinuousValueUnitTest.hpp \
39 ../Parser/Parameters/ContinuousValue.hpp \
40 ../Parser/Parameters/ContinuousValue_impl.hpp \
41 ../Parser/Parameters/ValueInterface.hpp
42ContinuousValueUnitTest_LDADD = \
43 $(PARSERPARAMETERSLIBS)
44
45ContinuousParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
46 ../Parser/Parameters/unittests/ContinuousParameterUnitTest.cpp \
47 ../Parser/Parameters/unittests/ContinuousParameterUnitTest.hpp \
48 ../Parser/Parameters/ContinuousValue.hpp \
49 ../Parser/Parameters/ContinuousValue_impl.hpp \
50 ../Parser/Parameters/ContinuousParameter.hpp \
51 ../Parser/Parameters/ContinuousParameter_impl.hpp \
52 ../Parser/Parameters/Parameter.hpp \
53 ../Parser/Parameters/ValueInterface.hpp
54ContinuousParameterUnitTest_LDADD = \
55 $(PARSERPARAMETERSLIBS)
56
57DiscreteValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
58 ../Parser/Parameters/unittests/DiscreteValueUnitTest.cpp \
59 ../Parser/Parameters/unittests/DiscreteValueUnitTest.hpp \
60 ../Parser/Parameters/DiscreteValue.hpp \
61 ../Parser/Parameters/DiscreteValue_impl.hpp \
62 ../Parser/Parameters/ValueInterface.hpp
63DiscreteValueUnitTest_LDADD = \
64 $(PARSERPARAMETERSLIBS)
65
66DiscreteParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
67 ../Parser/Parameters/unittests/DiscreteParameterUnitTest.cpp \
68 ../Parser/Parameters/unittests/DiscreteParameterUnitTest.hpp \
69 ../Parser/Parameters/DiscreteValue.hpp \
70 ../Parser/Parameters/DiscreteValue_impl.hpp \
71 ../Parser/Parameters/DiscreteParameter.hpp \
72 ../Parser/Parameters/DiscreteParameter_impl.hpp \
73 ../Parser/Parameters/Parameter.hpp \
74 ../Parser/Parameters/ValueInterface.hpp
75DiscreteParameterUnitTest_LDADD = \
76 $(PARSERPARAMETERSLIBS)
77
78ParameterStorageUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
79 ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
80 ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
81 ../Parser/Parameters/ParameterStorage.cpp \
82 ../Parser/Parameters/ParameterStorage.hpp \
83 ../Parser/Parameters/ContinuousValue.hpp \
84 ../Parser/Parameters/ContinuousValue_impl.hpp \
85 ../Parser/Parameters/DiscreteValue.hpp \
86 ../Parser/Parameters/DiscreteValue_impl.hpp \
87 ../Parser/Parameters/ValueInterface.hpp
88ParameterStorageUnitTest_LDADD = \
89 $(CodePatterns_LIBS) \
90 $(PARSERPARAMETERSLIBS)
91
92StringParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
93 ../Parser/Parameters/unittests/StringParameterUnitTest.cpp \
94 ../Parser/Parameters/unittests/StringParameterUnitTest.hpp \
95 ../Parser/Parameters/StringParameter.cpp \
96 ../Parser/Parameters/StringParameter.hpp \
97 ../Parser/Parameters/Parameter.hpp \
98 ../Parser/Parameters/ValueInterface.hpp
99StringParameterUnitTest_LDADD = \
100 $(PARSERPARAMETERSLIBS)
101
102
103#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.