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