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

CombiningParticlePotentialParsing
Last change on this file since ff4fff9 was ed8a68, checked in by Frederik Heber <heber@…>, 9 years ago

Removed TremoloParser's ElementKeys, superceded by ParticleRegistry.

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