[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 \
|
---|
| 9 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp
|
---|
[0b3cbdf] | 10 |
|
---|
[455573] | 11 | SHAPETESTSHEADERS= \
|
---|
[84721b] | 12 | ../Shapes/unittests/BaseShapesUnitTest.hpp \
|
---|
[a367b8] | 13 | ../Shapes/unittests/ShapeFactoryUnitTest.hpp \
|
---|
[5a8d61] | 14 | ../Shapes/unittests/ShapeOpsUnitTest.hpp \
|
---|
| 15 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp
|
---|
[455573] | 16 |
|
---|
| 17 | SHAPETESTS = \
|
---|
[84721b] | 18 | BaseShapesUnitTest \
|
---|
[a367b8] | 19 | ShapeFactoryUnitTest \
|
---|
[5a8d61] | 20 | ShapeOpsUnitTest \
|
---|
| 21 | Shape_HomogeneousPointsUnitTest
|
---|
[0b3cbdf] | 22 |
|
---|
[455573] | 23 | TESTS += $(SHAPETESTS)
|
---|
| 24 | check_PROGRAMS += $(SHAPETESTS)
|
---|
| 25 | noinst_PROGRAMS += $(SHAPETESTS)
|
---|
[0b3cbdf] | 26 |
|
---|
| 27 | SHAPELIBS = \
|
---|
[455573] | 28 | ../libMolecuilderShapes.la \
|
---|
[bf4b9f] | 29 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[79de12] | 30 | ${CodePatterns_LIBS}
|
---|
| 31 | # $(BOOST_LIB)
|
---|
[0b3cbdf] | 32 |
|
---|
[571d04] | 33 | BaseShapesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 34 | ../Shapes/unittests/BaseShapesUnitTest.cpp \
|
---|
[da1e92] | 35 | ../Shapes/unittests/BaseShapesUnitTest.hpp \
|
---|
| 36 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
| 37 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
[571d04] | 38 | nodist_BaseShapesUnitTest_SOURCES = \
|
---|
[455573] | 39 | ../Helpers/defs.hpp \
|
---|
| 40 | ../Helpers/defs.cpp
|
---|
[571d04] | 41 | BaseShapesUnitTest_LDADD = $(SHAPELIBS)
|
---|
[0b3cbdf] | 42 |
|
---|
[a367b8] | 43 | ShapeFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 44 | ../Shapes/unittests/ShapeFactoryUnitTest.cpp \
|
---|
| 45 | ../Shapes/unittests/ShapeFactoryUnitTest.hpp \
|
---|
| 46 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
| 47 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
| 48 | nodist_ShapeFactoryUnitTest_SOURCES = \
|
---|
| 49 | ../Helpers/defs.hpp \
|
---|
| 50 | ../Helpers/defs.cpp
|
---|
| 51 | ShapeFactoryUnitTest_LDADD = $(SHAPELIBS)
|
---|
| 52 |
|
---|
[84721b] | 53 | ShapeOpsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 54 | ../Shapes/unittests/ShapeOpsUnitTest.cpp \
|
---|
[da1e92] | 55 | ../Shapes/unittests/ShapeOpsUnitTest.hpp \
|
---|
| 56 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
| 57 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
[84721b] | 58 | nodist_ShapeOpsUnitTest_SOURCES = \
|
---|
| 59 | ../Helpers/defs.hpp \
|
---|
| 60 | ../Helpers/defs.cpp
|
---|
| 61 | ShapeOpsUnitTest_LDADD = $(SHAPELIBS)
|
---|
| 62 |
|
---|
[5a8d61] | 63 | Shape_HomogeneousPointsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 64 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp \
|
---|
[c48641] | 65 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.hpp \
|
---|
| 66 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
| 67 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
[5a8d61] | 68 | nodist_Shape_HomogeneousPointsUnitTest_SOURCES = \
|
---|
| 69 | ../Helpers/defs.hpp \
|
---|
| 70 | ../Helpers/defs.cpp
|
---|
| 71 | Shape_HomogeneousPointsUnitTest_LDADD = $(SHAPELIBS)
|
---|
| 72 |
|
---|
[0b3cbdf] | 73 |
|
---|
| 74 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|