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