source: src/Filling/unittests/Makefile.am@ 23612c

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 Candidate_v1.7.0 Candidate_v1.7.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 23612c was 4ecb2d, checked in by Frederik Heber <heber@…>, 9 years ago

Moved LinearAlgebra sub-package into ThirdParty folder.

  • needed to adapt location of libLinearAlgebra.la in all Makefile.am's.
  • relinked m4 subfolder, relinked am_doxygen_include.am. Both point to those present in molecuilder parent folder.
  • adapted configure.ac's:
  • Property mode set to 100644
File size: 3.1 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4FILLINGTESTSSOURCES = \
5 ../Filling/unittests/ClusterUnitTest.cpp \
6 ../Filling/unittests/FillerUnitTest.cpp \
7 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
8 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \
9 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
10 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
11 ../Filling/unittests/Ops_FillPredicateUnitTest.cpp
12
13FILLINGTESTSHEADERS = \
14 ../Filling/unittests/ClusterUnitTest.hpp \
15 ../Filling/unittests/FillerUnitTest.hpp \
16 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp \
17 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp \
18 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp \
19 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp \
20 ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
21
22FILLINGTESTS = \
23 ClusterUnitTest \
24 FillerUnitTest \
25 IsInsideDomain_FillPredicateUnitTest \
26 IsInsideSurface_FillPredicateUnitTest \
27 IsValidInDomain_FillPredicateUnitTest \
28 IsVoidNode_FillPredicateUnitTest \
29 Ops_FillPredicateUnitTest
30
31TESTS += $(FILLINGTESTS)
32check_PROGRAMS += $(FILLINGTESTS)
33noinst_PROGRAMS += $(FILLINGTESTS)
34
35FILLINGLIBS = \
36 libUnitTest.la \
37 ../libMolecuilder.la \
38 ../libMolecuilderFilling.la \
39 ../libMolecuilderShapes.la \
40 ../libMolecuilderUI.la
41if CONDJOBMARKET
42FILLINGLIBS += \
43 ../libMolecuilderJobs.la
44endif
45FILLINGLIBS += \
46 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
47 ${CodePatterns_LIBS} \
48 $(BOOST_LIB)
49
50ClusterUnitTest_SOURCES = \
51 ../Filling/unittests/ClusterUnitTest.cpp \
52 ../Filling/unittests/ClusterUnitTest.hpp
53ClusterUnitTest_LDADD = $(FILLINGLIBS)
54
55FillerUnitTest_SOURCES = \
56 ../Filling/unittests/FillerUnitTest.cpp \
57 ../Filling/unittests/FillerUnitTest.hpp
58FillerUnitTest_LDADD = $(FILLINGLIBS)
59
60IsInsideDomain_FillPredicateUnitTest_SOURCES = \
61 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
62 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp
63IsInsideDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
64
65IsInsideSurface_FillPredicateUnitTest_SOURCES = \
66 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \
67 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp
68IsInsideSurface_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
69
70IsValidInDomain_FillPredicateUnitTest_SOURCES = \
71 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
72 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp
73IsValidInDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
74
75IsVoidNode_FillPredicateUnitTest_SOURCES = \
76 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
77 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp
78IsVoidNode_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
79
80Ops_FillPredicateUnitTest_SOURCES = \
81 ../Filling/unittests/Ops_FillPredicateUnitTest.cpp \
82 ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
83Ops_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
84
85
86#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.