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/ParserTremolo_ElementKeysUnitTest.cpp \
|
---|
13 | ../Parser/unittests/ParserXmlUnitTest.cpp \
|
---|
14 | ../Parser/unittests/ParserXyzUnitTest.cpp
|
---|
15 |
|
---|
16 | PARSERTESTSHEADERS = \
|
---|
17 | ../Parser/unittests/ParserMpqcUnitTest.hpp \
|
---|
18 | ../Parser/unittests/ParserPcpUnitTest.hpp \
|
---|
19 | ../Parser/unittests/ParserPdbUnitTest.hpp \
|
---|
20 | ../Parser/unittests/ParserPsi3UnitTest.hpp \
|
---|
21 | ../Parser/unittests/ParserTremoloUnitTest.hpp \
|
---|
22 | ../Parser/unittests/ParserTremolo_ElementKeysUnitTest.hpp \
|
---|
23 | ../Parser/unittests/ParserXmlUnitTest.hpp \
|
---|
24 | ../Parser/unittests/ParserXyzUnitTest.hpp
|
---|
25 |
|
---|
26 | PARSERTESTS = \
|
---|
27 | ParserMpqcUnitTest \
|
---|
28 | ParserPcpUnitTest \
|
---|
29 | ParserPdbUnitTest \
|
---|
30 | ParserPsi3UnitTest \
|
---|
31 | ParserTremoloUnitTest \
|
---|
32 | ParserTremolo_ElementKeysUnitTest \
|
---|
33 | ParserXmlUnitTest \
|
---|
34 | ParserXyzUnitTest
|
---|
35 |
|
---|
36 | TESTS += $(PARSERTESTS)
|
---|
37 | check_PROGRAMS += $(PARSERTESTS)
|
---|
38 | noinst_PROGRAMS += $(PARSERTESTS)
|
---|
39 |
|
---|
40 | PARSERLIBS = \
|
---|
41 | ../libMolecuilderUI.la \
|
---|
42 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
43 | ${CodePatterns_LIBS}
|
---|
44 | # $(BOOST_LIB)
|
---|
45 |
|
---|
46 |
|
---|
47 | ParserMpqcUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
48 | ../Parser/unittests/ParserMpqcUnitTest.cpp \
|
---|
49 | ../Parser/unittests/ParserMpqcUnitTest.hpp
|
---|
50 | ParserMpqcUnitTest_LDADD = ${PARSERLIBS}
|
---|
51 |
|
---|
52 | ParserPcpUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
53 | ../Parser/unittests/ParserPcpUnitTest.cpp \
|
---|
54 | ../Parser/unittests/ParserPcpUnitTest.hpp
|
---|
55 | ParserPcpUnitTest_LDADD = ${PARSERLIBS}
|
---|
56 |
|
---|
57 | ParserPdbUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
58 | ../Parser/unittests/ParserPdbUnitTest.cpp \
|
---|
59 | ../Parser/unittests/ParserPdbUnitTest.hpp
|
---|
60 | ParserPdbUnitTest_LDADD = ${PARSERLIBS}
|
---|
61 |
|
---|
62 | ParserPsi3UnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
63 | ../Parser/unittests/ParserPsi3UnitTest.cpp \
|
---|
64 | ../Parser/unittests/ParserPsi3UnitTest.hpp
|
---|
65 | ParserPsi3UnitTest_LDADD = ${PARSERLIBS}
|
---|
66 |
|
---|
67 | ParserTremoloUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
68 | ../Parser/unittests/ParserTremoloUnitTest.cpp \
|
---|
69 | ../Parser/unittests/ParserTremoloUnitTest.hpp
|
---|
70 | ParserTremoloUnitTest_LDADD = ${PARSERLIBS}
|
---|
71 |
|
---|
72 | ParserTremolo_ElementKeysUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
73 | ../Parser/unittests/ParserTremolo_ElementKeysUnitTest.cpp \
|
---|
74 | ../Parser/unittests/ParserTremolo_ElementKeysUnitTest.hpp
|
---|
75 | ParserTremolo_ElementKeysUnitTest_LDADD = ${PARSERLIBS}
|
---|
76 |
|
---|
77 | ParserXmlUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
78 | ../Parser/unittests/ParserXmlUnitTest.cpp \
|
---|
79 | ../Parser/unittests/ParserXmlUnitTest.hpp
|
---|
80 | ParserXmlUnitTest_LDADD = ${PARSERLIBS}
|
---|
81 |
|
---|
82 | ParserXyzUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
83 | ../Parser/unittests/ParserXyzUnitTest.cpp \
|
---|
84 | ../Parser/unittests/ParserXyzUnitTest.hpp
|
---|
85 | ParserXyzUnitTest_LDADD = ${PARSERLIBS}
|
---|
86 |
|
---|
87 |
|
---|
88 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|