| [0b004b] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| 4 | TESSELATIONTESTSSOURCES = \
|
|---|
| 5 | ../Tesselation/unittests/TesselationUnitTest.cpp \
|
|---|
| 6 | ../Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.cpp \
|
|---|
| 7 | ../Tesselation/unittests/Tesselation_InsideOutsideUnitTest.cpp
|
|---|
| 8 |
|
|---|
| 9 | TESSELATIONTESTSHEADERS = \
|
|---|
| 10 | ../Tesselation/unittests/TesselationUnitTest.hpp \
|
|---|
| 11 | ../Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.hpp \
|
|---|
| 12 | ../Tesselation/unittests/Tesselation_InsideOutsideUnitTest.hpp
|
|---|
| 13 |
|
|---|
| 14 | TESSELATIONTESTS = \
|
|---|
| 15 | TesselationUnitTest \
|
|---|
| [6a7fcbb] | 16 | Tesselation_BoundaryTriangleUnitTest \
|
|---|
| [368207] | 17 | Tesselation_InOutsideUnitTest
|
|---|
| [0b004b] | 18 |
|
|---|
| 19 | TESTS += $(TESSELATIONTESTS)
|
|---|
| 20 | check_PROGRAMS += $(TESSELATIONTESTS)
|
|---|
| 21 | noinst_PROGRAMS += $(TESSELATIONTESTS)
|
|---|
| 22 |
|
|---|
| 23 | TESSELATIONLIBS = \
|
|---|
| 24 | ../libMolecuilderUI.la \
|
|---|
| [eb0d77] | 25 | ../libMolecuilder.la
|
|---|
| 26 | if CONDJOBMARKET
|
|---|
| 27 | TESSELATIONLIBS += \
|
|---|
| 28 | ../libMolecuilderJobs.la
|
|---|
| 29 | endif
|
|---|
| 30 | TESSELATIONLIBS += \
|
|---|
| [0b004b] | 31 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 32 | ${CodePatterns_LIBS} \
|
|---|
| 33 | $(BOOST_LIB)
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 | TesselationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 37 | ../Tesselation/unittests/TesselationUnitTest.cpp \
|
|---|
| 38 | ../Tesselation/unittests/TesselationUnitTest.hpp
|
|---|
| 39 | TesselationUnitTest_LDADD = ${TESSELATIONLIBS}
|
|---|
| 40 |
|
|---|
| 41 | Tesselation_BoundaryTriangleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 42 | ../Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.cpp \
|
|---|
| 43 | ../Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.hpp
|
|---|
| 44 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${TESSELATIONLIBS}
|
|---|
| 45 |
|
|---|
| 46 | Tesselation_InOutsideUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 47 | ../Tesselation/unittests/Tesselation_InsideOutsideUnitTest.cpp \
|
|---|
| 48 | ../Tesselation/unittests/Tesselation_InsideOutsideUnitTest.hpp
|
|---|
| 49 | Tesselation_InOutsideUnitTest_LDADD = ${TESSELATIONLIBS}
|
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|