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