1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | FILLINGTESTSSOURCES = \
|
---|
5 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
|
---|
6 | ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \
|
---|
7 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
|
---|
8 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
|
---|
9 | ../Filling/unittests/Ops_FillPredicateUnitTest.cpp
|
---|
10 |
|
---|
11 | FILLINGTESTSHEADERS = \
|
---|
12 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp \
|
---|
13 | ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp \
|
---|
14 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp \
|
---|
15 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp \
|
---|
16 | ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
|
---|
17 |
|
---|
18 | FILLINGTESTS = \
|
---|
19 | IsInsideDomain_FillPredicateUnitTest \
|
---|
20 | IsInsideSurface_FillPredicateUnitTest \
|
---|
21 | IsValidInDomain_FillPredicateUnitTest \
|
---|
22 | IsVoidNode_FillPredicateUnitTest \
|
---|
23 | Ops_FillPredicateUnitTest
|
---|
24 |
|
---|
25 | TESTS += $(FILLINGTESTS)
|
---|
26 | check_PROGRAMS += $(FILLINGTESTS)
|
---|
27 | noinst_PROGRAMS += $(FILLINGTESTS)
|
---|
28 |
|
---|
29 | FILLINGLIBS =
|
---|
30 |
|
---|
31 | IsInsideDomain_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
32 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
|
---|
33 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp
|
---|
34 | IsInsideDomain_FillPredicateUnitTest_LDADD = \
|
---|
35 | ../libMolecuilderFilling.la \
|
---|
36 | ../libMolecuilderUI.la \
|
---|
37 | ../libMolecuilder.la \
|
---|
38 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
39 | ${CodePatterns_LIBS} \
|
---|
40 | $(BOOST_LIBS)
|
---|
41 |
|
---|
42 | IsInsideSurface_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
43 | ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \
|
---|
44 | ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp
|
---|
45 | IsInsideSurface_FillPredicateUnitTest_LDADD = \
|
---|
46 | ../libMolecuilderFilling.la \
|
---|
47 | ../libMolecuilderUI.la \
|
---|
48 | ../libMolecuilder.la \
|
---|
49 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
50 | ${CodePatterns_LIBS} \
|
---|
51 | $(BOOST_LIBS)
|
---|
52 |
|
---|
53 | IsValidInDomain_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
54 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
|
---|
55 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp
|
---|
56 | IsValidInDomain_FillPredicateUnitTest_LDADD = \
|
---|
57 | ../libMolecuilderFilling.la \
|
---|
58 | ../libMolecuilderUI.la \
|
---|
59 | ../libMolecuilder.la \
|
---|
60 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
61 | ${CodePatterns_LIBS} \
|
---|
62 | $(BOOST_LIBS)
|
---|
63 |
|
---|
64 | IsVoidNode_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
65 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
|
---|
66 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp
|
---|
67 | IsVoidNode_FillPredicateUnitTest_LDADD = \
|
---|
68 | ../libMolecuilderFilling.la \
|
---|
69 | ../libMolecuilderUI.la \
|
---|
70 | ../libMolecuilder.la \
|
---|
71 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
72 | ${CodePatterns_LIBS} \
|
---|
73 | $(BOOST_LIBS)
|
---|
74 |
|
---|
75 | Ops_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
76 | ../Filling/unittests/Ops_FillPredicateUnitTest.cpp \
|
---|
77 | ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
|
---|
78 | Ops_FillPredicateUnitTest_LDADD = \
|
---|
79 | ../libMolecuilderFilling.la \
|
---|
80 | ../libMolecuilderUI.la \
|
---|
81 | ../libMolecuilder.la \
|
---|
82 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
83 | ${CodePatterns_LIBS} \
|
---|
84 | $(BOOST_LIBS)
|
---|
85 |
|
---|
86 |
|
---|
87 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|