1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | include ../../src/Parser/Parameters/unittests/Makefile.am
|
---|
5 |
|
---|
6 | PARSERTESTSSOURCES = \
|
---|
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 |
|
---|
15 | PARSERTESTSHEADERS = \
|
---|
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 |
|
---|
24 | PARSERTESTS = \
|
---|
25 | ParserMpqcUnitTest \
|
---|
26 | ParserPcpUnitTest \
|
---|
27 | ParserPdbUnitTest \
|
---|
28 | ParserPsi3UnitTest \
|
---|
29 | ParserTremoloUnitTest \
|
---|
30 | ParserXmlUnitTest \
|
---|
31 | ParserXyzUnitTest
|
---|
32 |
|
---|
33 | TESTS += $(PARSERTESTS)
|
---|
34 | check_PROGRAMS += $(PARSERTESTS)
|
---|
35 | noinst_PROGRAMS += $(PARSERTESTS)
|
---|
36 |
|
---|
37 | PARSERLIBS = \
|
---|
38 | libUnitTest.la \
|
---|
39 | ../libMolecuilder.la \
|
---|
40 | ../libMolecuilderUI.la
|
---|
41 | if CONDJOBMARKET
|
---|
42 | PARSERLIBS += \
|
---|
43 | ../libMolecuilderJobs.la \
|
---|
44 | ../libMolecuilderJobs_Work.la
|
---|
45 | endif
|
---|
46 | PARSERLIBS += \
|
---|
47 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
48 | ${CodePatterns_LIBS} \
|
---|
49 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
50 |
|
---|
51 | ParserMpqcUnitTest_SOURCES = \
|
---|
52 | ../Parser/unittests/ParserMpqcUnitTest.cpp \
|
---|
53 | ../Parser/unittests/ParserMpqcUnitTest.hpp
|
---|
54 | ParserMpqcUnitTest_LDADD = ${PARSERLIBS}
|
---|
55 |
|
---|
56 | ParserPcpUnitTest_SOURCES = \
|
---|
57 | ../Parser/unittests/ParserPcpUnitTest.cpp \
|
---|
58 | ../Parser/unittests/ParserPcpUnitTest.hpp
|
---|
59 | ParserPcpUnitTest_LDADD = ${PARSERLIBS}
|
---|
60 |
|
---|
61 | ParserPdbUnitTest_SOURCES = \
|
---|
62 | ../Parser/unittests/ParserPdbUnitTest.cpp \
|
---|
63 | ../Parser/unittests/ParserPdbUnitTest.hpp
|
---|
64 | ParserPdbUnitTest_LDADD = ${PARSERLIBS}
|
---|
65 |
|
---|
66 | ParserPsi3UnitTest_SOURCES = \
|
---|
67 | ../Parser/unittests/ParserPsi3UnitTest.cpp \
|
---|
68 | ../Parser/unittests/ParserPsi3UnitTest.hpp
|
---|
69 | ParserPsi3UnitTest_LDADD = ${PARSERLIBS}
|
---|
70 |
|
---|
71 | ParserTremoloUnitTest_SOURCES = \
|
---|
72 | ../Parser/unittests/ParserTremoloUnitTest.cpp \
|
---|
73 | ../Parser/unittests/ParserTremoloUnitTest.hpp
|
---|
74 | ParserTremoloUnitTest_LDADD = ${PARSERLIBS}
|
---|
75 |
|
---|
76 | ParserXmlUnitTest_SOURCES = \
|
---|
77 | ../Parser/unittests/ParserXmlUnitTest.cpp \
|
---|
78 | ../Parser/unittests/ParserXmlUnitTest.hpp
|
---|
79 | ParserXmlUnitTest_LDADD = ${PARSERLIBS}
|
---|
80 |
|
---|
81 | ParserXyzUnitTest_SOURCES = \
|
---|
82 | ../Parser/unittests/ParserXyzUnitTest.cpp \
|
---|
83 | ../Parser/unittests/ParserXyzUnitTest.hpp
|
---|
84 | ParserXyzUnitTest_LDADD = ${PARSERLIBS}
|
---|
85 |
|
---|
86 |
|
---|
87 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|