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/ParserTremoloUnitTest.cpp \
|
---|
11 | ../Parser/unittests/ParserXyzUnitTest.cpp
|
---|
12 |
|
---|
13 | PARSERTESTSHEADERS = \
|
---|
14 | ../Parser/unittests/ParserMpqcUnitTest.hpp \
|
---|
15 | ../Parser/unittests/ParserPcpUnitTest.hpp \
|
---|
16 | ../Parser/unittests/ParserPdbUnitTest.hpp \
|
---|
17 | ../Parser/unittests/ParserTremoloUnitTest.hpp \
|
---|
18 | ../Parser/unittests/ParserXyzUnitTest.hpp
|
---|
19 |
|
---|
20 | PARSERTESTS = \
|
---|
21 | ParserMpqcUnitTest \
|
---|
22 | ParserPcpUnitTest \
|
---|
23 | ParserPdbUnitTest \
|
---|
24 | ParserTremoloUnitTest \
|
---|
25 | ParserXyzUnitTest
|
---|
26 |
|
---|
27 | TESTS += $(PARSERTESTS)
|
---|
28 | check_PROGRAMS += $(PARSERTESTS)
|
---|
29 | noinst_PROGRAMS += $(PARSERTESTS)
|
---|
30 |
|
---|
31 | PARSERLIBS = \
|
---|
32 | ../libMolecuilderUI.la \
|
---|
33 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
34 | ${CodePatterns_LIBS}
|
---|
35 | # $(BOOST_LIB)
|
---|
36 |
|
---|
37 |
|
---|
38 | ParserMpqcUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
39 | ../Parser/unittests/ParserMpqcUnitTest.cpp \
|
---|
40 | ../Parser/unittests/ParserMpqcUnitTest.hpp
|
---|
41 | ParserMpqcUnitTest_LDADD = ${PARSERLIBS}
|
---|
42 |
|
---|
43 | ParserPcpUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
44 | ../Parser/unittests/ParserPcpUnitTest.cpp \
|
---|
45 | ../Parser/unittests/ParserPcpUnitTest.hpp
|
---|
46 | ParserPcpUnitTest_LDADD = ${PARSERLIBS}
|
---|
47 |
|
---|
48 | ParserPdbUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
49 | ../Parser/unittests/ParserPdbUnitTest.cpp \
|
---|
50 | ../Parser/unittests/ParserPdbUnitTest.hpp
|
---|
51 | ParserPdbUnitTest_LDADD = ${PARSERLIBS}
|
---|
52 |
|
---|
53 | ParserTremoloUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
54 | ../Parser/unittests/ParserTremoloUnitTest.cpp \
|
---|
55 | ../Parser/unittests/ParserTremoloUnitTest.hpp
|
---|
56 | ParserTremoloUnitTest_LDADD = ${PARSERLIBS}
|
---|
57 |
|
---|
58 | ParserXyzUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
59 | ../Parser/unittests/ParserXyzUnitTest.cpp \
|
---|
60 | ../Parser/unittests/ParserXyzUnitTest.hpp
|
---|
61 | ParserXyzUnitTest_LDADD = ${PARSERLIBS}
|
---|
62 |
|
---|
63 |
|
---|
64 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|