[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 \
|
---|
[8f6e2a] | 37 | ../libMolecuilderFilling.la \
|
---|
| 38 | ../libMolecuilderUI.la \
|
---|
[eb0d77] | 39 | ../libMolecuilder.la
|
---|
| 40 | if CONDJOBMARKET
|
---|
| 41 | FILLINGLIBS += \
|
---|
| 42 | ../libMolecuilderJobs.la
|
---|
| 43 | endif
|
---|
| 44 | FILLINGLIBS += \
|
---|
[8f6e2a] | 45 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 46 | ${CodePatterns_LIBS} \
|
---|
[353326] | 47 | $(BOOST_LIB)
|
---|
[8f6e2a] | 48 |
|
---|
[e9e86f] | 49 | ClusterUnitTest_SOURCES = \
|
---|
[eb0d77] | 50 | ../Filling/unittests/ClusterUnitTest.cpp \
|
---|
| 51 | ../Filling/unittests/ClusterUnitTest.hpp
|
---|
| 52 | ClusterUnitTest_LDADD = $(FILLINGLIBS)
|
---|
| 53 |
|
---|
[e9e86f] | 54 | FillerUnitTest_SOURCES = \
|
---|
[d505a3] | 55 | ../Filling/unittests/FillerUnitTest.cpp \
|
---|
| 56 | ../Filling/unittests/FillerUnitTest.hpp
|
---|
[eb0d77] | 57 | FillerUnitTest_LDADD = $(FILLINGLIBS)
|
---|
[d505a3] | 58 |
|
---|
[e9e86f] | 59 | IsInsideDomain_FillPredicateUnitTest_SOURCES = \
|
---|
[6499b1] | 60 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
|
---|
| 61 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp
|
---|
[eb0d77] | 62 | IsInsideDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
|
---|
[6499b1] | 63 |
|
---|
[e9e86f] | 64 | IsInsideSurface_FillPredicateUnitTest_SOURCES = \
|
---|
[7adddc] | 65 | ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \
|
---|
| 66 | ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp
|
---|
[eb0d77] | 67 | IsInsideSurface_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
|
---|
[7adddc] | 68 |
|
---|
[e9e86f] | 69 | IsValidInDomain_FillPredicateUnitTest_SOURCES = \
|
---|
[600a52] | 70 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
|
---|
| 71 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp
|
---|
[eb0d77] | 72 | IsValidInDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
|
---|
[600a52] | 73 |
|
---|
[e9e86f] | 74 | IsVoidNode_FillPredicateUnitTest_SOURCES = \
|
---|
[baac79] | 75 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
|
---|
| 76 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp
|
---|
[eb0d77] | 77 | IsVoidNode_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
|
---|
[baac79] | 78 |
|
---|
[e9e86f] | 79 | Ops_FillPredicateUnitTest_SOURCES = \
|
---|
[83fd7d] | 80 | ../Filling/unittests/Ops_FillPredicateUnitTest.cpp \
|
---|
| 81 | ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
|
---|
[eb0d77] | 82 | Ops_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
|
---|
[83fd7d] | 83 |
|
---|
[600a52] | 84 |
|
---|
| 85 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|