source: src/Parser/unittests/Makefile.am

Candidate_v1.6.1
Last change on this file was cb98f1, checked in by Frederik Heber <heber@…>, 8 years ago

FIX: One Definition Rule violation by mpqc.

  • mpqc.cc implements MPQCJob::Work() a second time (other in MPQCJob.cpp), this violates ODR and did so far work out of sheer luck. This was brough to surface by making a debian package.
  • Now, we extracted MPQCJob::Work() into a separate library.
  • Property mode set to 100644
File size: 2.6 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 \
44 ../libMolecuilderJobs_Work.la
45endif
46PARSERLIBS += \
47 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
48 ${CodePatterns_LIBS} \
49 $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
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.