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