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