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 \
|
---|
16 | Tesselation_BoundaryTriangleUnitTest \
|
---|
17 | Tesselation_InOutsideUnitTest
|
---|
18 |
|
---|
19 | TESTS += $(TESSELATIONTESTS)
|
---|
20 | check_PROGRAMS += $(TESSELATIONTESTS)
|
---|
21 | noinst_PROGRAMS += $(TESSELATIONTESTS)
|
---|
22 |
|
---|
23 | TESSELATIONLIBS = \
|
---|
24 | libUnitTest.la \
|
---|
25 | ../libMolecuilder.la \
|
---|
26 | ../libMolecuilderUI.la \
|
---|
27 | ../libMolecuilder.la
|
---|
28 | if CONDJOBMARKET
|
---|
29 | TESSELATIONLIBS += \
|
---|
30 | ../libMolecuilderJobs.la \
|
---|
31 | ../libMolecuilderJobs_Work.la
|
---|
32 | endif
|
---|
33 | TESSELATIONLIBS += \
|
---|
34 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
35 | ${CodePatterns_LIBS} \
|
---|
36 | $(BOOST_LIB)
|
---|
37 |
|
---|
38 |
|
---|
39 | TesselationUnitTest_SOURCES = \
|
---|
40 | ../Tesselation/unittests/TesselationUnitTest.cpp \
|
---|
41 | ../Tesselation/unittests/TesselationUnitTest.hpp
|
---|
42 | TesselationUnitTest_LDADD = ${TESSELATIONLIBS}
|
---|
43 |
|
---|
44 | Tesselation_BoundaryTriangleUnitTest_SOURCES = \
|
---|
45 | ../Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.cpp \
|
---|
46 | ../Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.hpp
|
---|
47 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${TESSELATIONLIBS}
|
---|
48 |
|
---|
49 | Tesselation_InOutsideUnitTest_SOURCES = \
|
---|
50 | ../Tesselation/unittests/Tesselation_InsideOutsideUnitTest.cpp \
|
---|
51 | ../Tesselation/unittests/Tesselation_InsideOutsideUnitTest.hpp
|
---|
52 | Tesselation_InOutsideUnitTest_LDADD = ${TESSELATIONLIBS}
|
---|
53 |
|
---|
54 |
|
---|
55 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|