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