[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 += \
|
---|
[cb98f1] | 43 | ../libMolecuilderJobs.la \
|
---|
| 44 | ../libMolecuilderJobs_Work.la
|
---|
[eb0d77] | 45 | endif
|
---|
| 46 | PARSERLIBS += \
|
---|
[4ecb2d] | 47 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[53ef0d4] | 48 | ${CodePatterns_LIBS} \
|
---|
| 49 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
[41396a] | 50 |
|
---|
[e9e86f] | 51 | ParserMpqcUnitTest_SOURCES = \
|
---|
[455573] | 52 | ../Parser/unittests/ParserMpqcUnitTest.cpp \
|
---|
| 53 | ../Parser/unittests/ParserMpqcUnitTest.hpp
|
---|
| 54 | ParserMpqcUnitTest_LDADD = ${PARSERLIBS}
|
---|
[9e4fd1] | 55 |
|
---|
[e9e86f] | 56 | ParserPcpUnitTest_SOURCES = \
|
---|
[455573] | 57 | ../Parser/unittests/ParserPcpUnitTest.cpp \
|
---|
| 58 | ../Parser/unittests/ParserPcpUnitTest.hpp
|
---|
| 59 | ParserPcpUnitTest_LDADD = ${PARSERLIBS}
|
---|
[9e4fd1] | 60 |
|
---|
[e9e86f] | 61 | ParserPdbUnitTest_SOURCES = \
|
---|
[455573] | 62 | ../Parser/unittests/ParserPdbUnitTest.cpp \
|
---|
| 63 | ../Parser/unittests/ParserPdbUnitTest.hpp
|
---|
| 64 | ParserPdbUnitTest_LDADD = ${PARSERLIBS}
|
---|
[41396a] | 65 |
|
---|
[e9e86f] | 66 | ParserPsi3UnitTest_SOURCES = \
|
---|
[1bef07] | 67 | ../Parser/unittests/ParserPsi3UnitTest.cpp \
|
---|
| 68 | ../Parser/unittests/ParserPsi3UnitTest.hpp
|
---|
| 69 | ParserPsi3UnitTest_LDADD = ${PARSERLIBS}
|
---|
| 70 |
|
---|
[e9e86f] | 71 | ParserTremoloUnitTest_SOURCES = \
|
---|
[455573] | 72 | ../Parser/unittests/ParserTremoloUnitTest.cpp \
|
---|
| 73 | ../Parser/unittests/ParserTremoloUnitTest.hpp
|
---|
| 74 | ParserTremoloUnitTest_LDADD = ${PARSERLIBS}
|
---|
[41396a] | 75 |
|
---|
[e9e86f] | 76 | ParserXmlUnitTest_SOURCES = \
|
---|
[d2596b] | 77 | ../Parser/unittests/ParserXmlUnitTest.cpp \
|
---|
| 78 | ../Parser/unittests/ParserXmlUnitTest.hpp
|
---|
| 79 | ParserXmlUnitTest_LDADD = ${PARSERLIBS}
|
---|
| 80 |
|
---|
[e9e86f] | 81 | ParserXyzUnitTest_SOURCES = \
|
---|
[455573] | 82 | ../Parser/unittests/ParserXyzUnitTest.cpp \
|
---|
| 83 | ../Parser/unittests/ParserXyzUnitTest.hpp
|
---|
| 84 | ParserXyzUnitTest_LDADD = ${PARSERLIBS}
|
---|
[9e4fd1] | 85 |
|
---|
[41396a] | 86 |
|
---|
| 87 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|