source: src/Parser/unittests/Makefile.am@ dfeb7c

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 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_vmg TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since dfeb7c was 53ef0d4, checked in by Frederik Heber <heber@…>, 8 years ago

FIX: Missing CodePatterns_LDFLAGS or AM_LDFLAGS or missing boost system dependency in executable and unit tests.

  • Property mode set to 100644
File size: 2.5 KB
RevLine 
[41396a]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
[84e752]4include ../../src/Parser/Parameters/unittests/Makefile.am
[41396a]5
[455573]6PARSERTESTSSOURCES = \
7 ../Parser/unittests/ParserMpqcUnitTest.cpp \
8 ../Parser/unittests/ParserPcpUnitTest.cpp \
9 ../Parser/unittests/ParserPdbUnitTest.cpp \
[1bef07]10 ../Parser/unittests/ParserPsi3UnitTest.cpp \
[455573]11 ../Parser/unittests/ParserTremoloUnitTest.cpp \
[d2596b]12 ../Parser/unittests/ParserXmlUnitTest.cpp \
[455573]13 ../Parser/unittests/ParserXyzUnitTest.cpp
[41396a]14
[455573]15PARSERTESTSHEADERS = \
16 ../Parser/unittests/ParserMpqcUnitTest.hpp \
17 ../Parser/unittests/ParserPcpUnitTest.hpp \
18 ../Parser/unittests/ParserPdbUnitTest.hpp \
[1bef07]19 ../Parser/unittests/ParserPsi3UnitTest.hpp \
[455573]20 ../Parser/unittests/ParserTremoloUnitTest.hpp \
[d2596b]21 ../Parser/unittests/ParserXmlUnitTest.hpp \
[455573]22 ../Parser/unittests/ParserXyzUnitTest.hpp
23
24PARSERTESTS = \
[9e4fd1]25 ParserMpqcUnitTest \
26 ParserPcpUnitTest \
27 ParserPdbUnitTest \
[1bef07]28 ParserPsi3UnitTest \
[9e4fd1]29 ParserTremoloUnitTest \
[d2596b]30 ParserXmlUnitTest \
[9e4fd1]31 ParserXyzUnitTest
[41396a]32
[455573]33TESTS += $(PARSERTESTS)
34check_PROGRAMS += $(PARSERTESTS)
35noinst_PROGRAMS += $(PARSERTESTS)
[41396a]36
[455573]37PARSERLIBS = \
[e9e86f]38 libUnitTest.la \
[748fc7]39 ../libMolecuilder.la \
[eb0d77]40 ../libMolecuilderUI.la
41if CONDJOBMARKET
42PARSERLIBS += \
43 ../libMolecuilderJobs.la
44endif
45PARSERLIBS += \
[4ecb2d]46 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[53ef0d4]47 ${CodePatterns_LIBS} \
48 $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
[41396a]49
[e9e86f]50ParserMpqcUnitTest_SOURCES = \
[455573]51 ../Parser/unittests/ParserMpqcUnitTest.cpp \
52 ../Parser/unittests/ParserMpqcUnitTest.hpp
53ParserMpqcUnitTest_LDADD = ${PARSERLIBS}
[9e4fd1]54
[e9e86f]55ParserPcpUnitTest_SOURCES = \
[455573]56 ../Parser/unittests/ParserPcpUnitTest.cpp \
57 ../Parser/unittests/ParserPcpUnitTest.hpp
58ParserPcpUnitTest_LDADD = ${PARSERLIBS}
[9e4fd1]59
[e9e86f]60ParserPdbUnitTest_SOURCES = \
[455573]61 ../Parser/unittests/ParserPdbUnitTest.cpp \
62 ../Parser/unittests/ParserPdbUnitTest.hpp
63ParserPdbUnitTest_LDADD = ${PARSERLIBS}
[41396a]64
[e9e86f]65ParserPsi3UnitTest_SOURCES = \
[1bef07]66 ../Parser/unittests/ParserPsi3UnitTest.cpp \
67 ../Parser/unittests/ParserPsi3UnitTest.hpp
68ParserPsi3UnitTest_LDADD = ${PARSERLIBS}
69
[e9e86f]70ParserTremoloUnitTest_SOURCES = \
[455573]71 ../Parser/unittests/ParserTremoloUnitTest.cpp \
72 ../Parser/unittests/ParserTremoloUnitTest.hpp
73ParserTremoloUnitTest_LDADD = ${PARSERLIBS}
[41396a]74
[e9e86f]75ParserXmlUnitTest_SOURCES = \
[d2596b]76 ../Parser/unittests/ParserXmlUnitTest.cpp \
77 ../Parser/unittests/ParserXmlUnitTest.hpp
78ParserXmlUnitTest_LDADD = ${PARSERLIBS}
79
[e9e86f]80ParserXyzUnitTest_SOURCES = \
[455573]81 ../Parser/unittests/ParserXyzUnitTest.cpp \
82 ../Parser/unittests/ParserXyzUnitTest.hpp
83ParserXyzUnitTest_LDADD = ${PARSERLIBS}
[9e4fd1]84
[41396a]85
86#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.