[0b3cbdf] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 |
|
---|
[455573] | 5 | SHAPETESTSSOURCES = \
|
---|
[84721b] | 6 | ../Shapes/unittests/BaseShapesUnitTest.cpp \
|
---|
[a367b8] | 7 | ../Shapes/unittests/ShapeFactoryUnitTest.cpp \
|
---|
[5a8d61] | 8 | ../Shapes/unittests/ShapeOpsUnitTest.cpp \
|
---|
[d8421f] | 9 | ../Shapes/unittests/ShapeRegistryUnitTest.cpp \
|
---|
[5a8d61] | 10 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp
|
---|
[0b3cbdf] | 11 |
|
---|
[455573] | 12 | SHAPETESTSHEADERS= \
|
---|
[84721b] | 13 | ../Shapes/unittests/BaseShapesUnitTest.hpp \
|
---|
[a367b8] | 14 | ../Shapes/unittests/ShapeFactoryUnitTest.hpp \
|
---|
[5a8d61] | 15 | ../Shapes/unittests/ShapeOpsUnitTest.hpp \
|
---|
[d8421f] | 16 | ../Shapes/unittests/ShapeRegistryUnitTest.hpp \
|
---|
[5a8d61] | 17 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp
|
---|
[455573] | 18 |
|
---|
| 19 | SHAPETESTS = \
|
---|
[84721b] | 20 | BaseShapesUnitTest \
|
---|
[a367b8] | 21 | ShapeFactoryUnitTest \
|
---|
[5a8d61] | 22 | ShapeOpsUnitTest \
|
---|
[d8421f] | 23 | ShapeRegistryUnitTest \
|
---|
[5a8d61] | 24 | Shape_HomogeneousPointsUnitTest
|
---|
[0b3cbdf] | 25 |
|
---|
[455573] | 26 | TESTS += $(SHAPETESTS)
|
---|
| 27 | check_PROGRAMS += $(SHAPETESTS)
|
---|
| 28 | noinst_PROGRAMS += $(SHAPETESTS)
|
---|
[0b3cbdf] | 29 |
|
---|
| 30 | SHAPELIBS = \
|
---|
[455573] | 31 | ../libMolecuilderShapes.la \
|
---|
[bf4b9f] | 32 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[79de12] | 33 | ${CodePatterns_LIBS}
|
---|
| 34 | # $(BOOST_LIB)
|
---|
[0b3cbdf] | 35 |
|
---|
[571d04] | 36 | BaseShapesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 37 | ../Shapes/unittests/BaseShapesUnitTest.cpp \
|
---|
[da1e92] | 38 | ../Shapes/unittests/BaseShapesUnitTest.hpp \
|
---|
| 39 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
| 40 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
[571d04] | 41 | nodist_BaseShapesUnitTest_SOURCES = \
|
---|
[455573] | 42 | ../Helpers/defs.hpp \
|
---|
| 43 | ../Helpers/defs.cpp
|
---|
[571d04] | 44 | BaseShapesUnitTest_LDADD = $(SHAPELIBS)
|
---|
[0b3cbdf] | 45 |
|
---|
[a367b8] | 46 | ShapeFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 47 | ../Shapes/unittests/ShapeFactoryUnitTest.cpp \
|
---|
| 48 | ../Shapes/unittests/ShapeFactoryUnitTest.hpp \
|
---|
| 49 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
| 50 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
| 51 | nodist_ShapeFactoryUnitTest_SOURCES = \
|
---|
| 52 | ../Helpers/defs.hpp \
|
---|
| 53 | ../Helpers/defs.cpp
|
---|
| 54 | ShapeFactoryUnitTest_LDADD = $(SHAPELIBS)
|
---|
| 55 |
|
---|
[84721b] | 56 | ShapeOpsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 57 | ../Shapes/unittests/ShapeOpsUnitTest.cpp \
|
---|
[da1e92] | 58 | ../Shapes/unittests/ShapeOpsUnitTest.hpp \
|
---|
| 59 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
| 60 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
[84721b] | 61 | nodist_ShapeOpsUnitTest_SOURCES = \
|
---|
| 62 | ../Helpers/defs.hpp \
|
---|
| 63 | ../Helpers/defs.cpp
|
---|
| 64 | ShapeOpsUnitTest_LDADD = $(SHAPELIBS)
|
---|
| 65 |
|
---|
[d8421f] | 66 | ShapeRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 67 | ../Shapes/unittests/ShapeRegistryUnitTest.cpp \
|
---|
| 68 | ../Shapes/unittests/ShapeRegistryUnitTest.hpp \
|
---|
| 69 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
| 70 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
| 71 | nodist_ShapeRegistryUnitTest_SOURCES = \
|
---|
| 72 | ../Helpers/defs.hpp \
|
---|
| 73 | ../Helpers/defs.cpp
|
---|
| 74 | ShapeRegistryUnitTest_LDADD = $(SHAPELIBS)
|
---|
| 75 |
|
---|
[5a8d61] | 76 | Shape_HomogeneousPointsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 77 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp \
|
---|
[c48641] | 78 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.hpp \
|
---|
| 79 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
| 80 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
[5a8d61] | 81 | nodist_Shape_HomogeneousPointsUnitTest_SOURCES = \
|
---|
| 82 | ../Helpers/defs.hpp \
|
---|
| 83 | ../Helpers/defs.cpp
|
---|
| 84 | Shape_HomogeneousPointsUnitTest_LDADD = $(SHAPELIBS)
|
---|
| 85 |
|
---|
[0b3cbdf] | 86 |
|
---|
| 87 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|