[18eecf] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
[455573] | 4 | check_PROGRAMS =
|
---|
| 5 | noinst_PROGRAMS =
|
---|
| 6 | TESTS =
|
---|
| 7 |
|
---|
| 8 | include ../../src/Actions/unittests/Makefile.am
|
---|
[9b5a2c] | 9 | include ../../src/Analysis/unittests/Makefile.am
|
---|
[455573] | 10 | include ../../src/Descriptors/unittests/Makefile.am
|
---|
[592be9] | 11 | include ../../src/Element/unittests/Makefile.am
|
---|
[feb7df] | 12 | include ../../src/Fragmentation/unittests/Makefile.am
|
---|
[629e43] | 13 | include ../../src/Graph/unittests/Makefile.am
|
---|
[91f592] | 14 | include ../../src/LinkedCell/unittests/Makefile.am
|
---|
[455573] | 15 | include ../../src/Parser/unittests/Makefile.am
|
---|
| 16 | include ../../src/RandomNumbers/unittests/Makefile.am
|
---|
| 17 | include ../../src/Shapes/unittests/Makefile.am
|
---|
[0b004b] | 18 | include ../../src/Tesselation/unittests/Makefile.am
|
---|
[455573] | 19 | include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
|
---|
| 20 | include ../../src/UIElements/Menu/unittests/Makefile.am
|
---|
[c0bccb] | 21 |
|
---|
[bf4b9f] | 22 | INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
|
---|
[b9907c] | 23 |
|
---|
[f08ae7] | 24 | AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
|
---|
[a0064e] | 25 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
|
---|
[be90f1] | 26 |
|
---|
[455573] | 27 | GENERALTESTS = \
|
---|
[f844ef] | 28 | BoxUnitTest \
|
---|
[9f632c] | 29 | FormulaUnittest \
|
---|
[9fb860] | 30 | ListOfBondsUnitTest \
|
---|
[f649de] | 31 | WorldTimeUnitTest
|
---|
[4fbca9c] | 32 |
|
---|
[455573] | 33 | # these ones are checked
|
---|
| 34 | TESTS += $(GENERALTESTS)
|
---|
| 35 | # these ones are built for checking only
|
---|
| 36 | check_PROGRAMS += $(GENERALTESTS)
|
---|
| 37 | # ... and not installed
|
---|
| 38 | noinst_PROGRAMS += $(GENERALTESTS) TestRunner
|
---|
[b9907c] | 39 |
|
---|
[f08ae7] | 40 | BOOST_LIB = \
|
---|
| 41 | $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
|
---|
[d7d022] | 42 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
| 43 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
|
---|
[455573] | 44 |
|
---|
[9d4ff35] | 45 | GENERALLIBS = \
|
---|
| 46 | ../libMolecuilder.la \
|
---|
| 47 | ../libMolecuilderHelpers.la \
|
---|
| 48 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 49 | ${CodePatterns_LIBS} \
|
---|
| 50 | $(BOOST_LIB)
|
---|
| 51 |
|
---|
[f4b5b7] | 52 | ALLLIBS = \
|
---|
[455573] | 53 | ../libMolecuilderUI.la \
|
---|
[acbe1b] | 54 | ../libMolecuilder.la \
|
---|
[455573] | 55 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 56 | ${CodePatterns_LIBS} \
|
---|
| 57 | $(BOOST_LIB)
|
---|
[4d9c01] | 58 |
|
---|
[9b6b2f] | 59 | TESTSOURCES = \
|
---|
[455573] | 60 | ${ACTIONTESTSSOURCES} \
|
---|
[9b5a2c] | 61 | ${ANALYSISTESTSSOURCES} \
|
---|
[455573] | 62 | ${DESCRIPTORTESTSSOURCES} \
|
---|
[592be9] | 63 | ${ELEMENTTESTSSOURCES} \
|
---|
[feb7df] | 64 | ${FRAGMENTATIONTESTSSOURCES} \
|
---|
[629e43] | 65 | ${GRAPHTESTSSOURCES} \
|
---|
[91f592] | 66 | ${LINKEDCELLSOURCES} \
|
---|
[455573] | 67 | ${LINEARALGEBRATESTSSOURCES} \
|
---|
| 68 | ${PARSERTESTSSOURCES} \
|
---|
| 69 | ${RANDOMNUMBERTESTSSOURCES} \
|
---|
| 70 | ${SHAPETESTSSOURCES} \
|
---|
[0b004b] | 71 | ${TESSELATIONTESTSSOURCES} \
|
---|
[455573] | 72 | $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
|
---|
| 73 | ${UIELEMENTSMENUTESTSSOURCES} \
|
---|
[f844ef] | 74 | BoxUnitTest.cpp \
|
---|
| 75 | FormulaUnitTest.cpp \
|
---|
| 76 | ListOfBondsUnitTest.cpp \
|
---|
[f649de] | 77 | WorldTimeUnitTest.cpp
|
---|
[9b6b2f] | 78 |
|
---|
| 79 | TESTHEADERS = \
|
---|
[455573] | 80 | ${ACTIONTESTSHEADERS} \
|
---|
[9b5a2c] | 81 | ${ANALYSISTESTSHEADERS} \
|
---|
[455573] | 82 | ${DESCRIPTORTESTSHEADERS} \
|
---|
[592be9] | 83 | ${ELEMENTTESTSHEADERS} \
|
---|
[feb7df] | 84 | ${FRAGMENTATIONTESTSHEADERS} \
|
---|
[629e43] | 85 | ${GRAPHTESTSHEADERS} \
|
---|
[91f592] | 86 | ${LINKEDCELLHEADERS} \
|
---|
[455573] | 87 | ${LINEARALGEBRATESTSHEADERS} \
|
---|
| 88 | ${PARSERTESTSHEADERS} \
|
---|
| 89 | ${RANDOMNUMBERTESTSHEADERS} \
|
---|
| 90 | ${SHAPETESTSHEADERS} \
|
---|
[0b004b] | 91 | ${TESSELATIONTESTSHEADERS} \
|
---|
[455573] | 92 | $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
|
---|
| 93 | ${UIELEMENTSMENUTESTSHEADERS} \
|
---|
[f844ef] | 94 | BoxUnitTest.hpp \
|
---|
| 95 | FormulaUnitTest.hpp \
|
---|
| 96 | ListOfBondsUnitTest.hpp \
|
---|
[bf4b9f] | 97 | WorldTimeUnitTest.hpp
|
---|
[9fb860] | 98 |
|
---|
[9b6b2f] | 99 |
|
---|
[f844ef] | 100 | BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 101 | BoxUnitTest.cpp \
|
---|
| 102 | BoxUnitTest.hpp
|
---|
[9d4ff35] | 103 | BoxUnitTest_LDADD = \
|
---|
| 104 | ../libMolecuilder.la \
|
---|
| 105 | ../libMolecuilderShapes.la \
|
---|
| 106 | ../libMolecuilderHelpers.la \
|
---|
| 107 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[77bc4f] | 108 |
|
---|
[f844ef] | 109 | FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 110 | FormulaUnitTest.cpp \
|
---|
| 111 | FormulaUnitTest.hpp
|
---|
[9d4ff35] | 112 | FormulaUnittest_LDADD = $(ALLLIBS)
|
---|
[9f632c] | 113 |
|
---|
[f844ef] | 114 | ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 115 | ListOfBondsUnitTest.cpp \
|
---|
| 116 | ListOfBondsUnitTest.hpp
|
---|
[9d4ff35] | 117 | ListOfBondsUnitTest_LDADD = $(ALLLIBS)
|
---|
[266237] | 118 |
|
---|
[f649de] | 119 | WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 120 | WorldTimeUnitTest.cpp \
|
---|
| 121 | WorldTimeUnitTest.hpp \
|
---|
| 122 | ../WorldTime.cpp \
|
---|
| 123 | ../WorldTime.hpp
|
---|
| 124 | WorldTimeUnitTest_LDADD = ${BOOST_LIB}
|
---|
| 125 |
|
---|
| 126 |
|
---|
[36166d] | 127 | TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
|
---|
[b37436] | 128 | TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
|
---|
[7a1ce5] | 129 |
|
---|
[18eecf] | 130 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|