1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 |
|
---|
5 | SHAPETESTSSOURCES = \
|
---|
6 | ../Shapes/unittests/BaseShapesUnitTest.cpp \
|
---|
7 | ../Shapes/unittests/ShapeFactoryUnitTest.cpp \
|
---|
8 | ../Shapes/unittests/ShapeOpsUnitTest.cpp \
|
---|
9 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp
|
---|
10 |
|
---|
11 | SHAPETESTSHEADERS= \
|
---|
12 | ../Shapes/unittests/BaseShapesUnitTest.hpp \
|
---|
13 | ../Shapes/unittests/ShapeFactoryUnitTest.hpp \
|
---|
14 | ../Shapes/unittests/ShapeOpsUnitTest.hpp \
|
---|
15 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp
|
---|
16 |
|
---|
17 | SHAPETESTS = \
|
---|
18 | BaseShapesUnitTest \
|
---|
19 | ShapeFactoryUnitTest \
|
---|
20 | ShapeOpsUnitTest \
|
---|
21 | Shape_HomogeneousPointsUnitTest
|
---|
22 |
|
---|
23 | TESTS += $(SHAPETESTS)
|
---|
24 | check_PROGRAMS += $(SHAPETESTS)
|
---|
25 | noinst_PROGRAMS += $(SHAPETESTS)
|
---|
26 |
|
---|
27 | SHAPELIBS = \
|
---|
28 | ../libMolecuilderShapes.la \
|
---|
29 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
30 | ${CodePatterns_LIBS}
|
---|
31 | # $(BOOST_LIB)
|
---|
32 |
|
---|
33 | BaseShapesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
34 | ../Shapes/unittests/BaseShapesUnitTest.cpp \
|
---|
35 | ../Shapes/unittests/BaseShapesUnitTest.hpp \
|
---|
36 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
37 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
38 | nodist_BaseShapesUnitTest_SOURCES = \
|
---|
39 | ../Helpers/defs.hpp \
|
---|
40 | ../Helpers/defs.cpp
|
---|
41 | BaseShapesUnitTest_LDADD = $(SHAPELIBS)
|
---|
42 |
|
---|
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 |
|
---|
53 | ShapeOpsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
54 | ../Shapes/unittests/ShapeOpsUnitTest.cpp \
|
---|
55 | ../Shapes/unittests/ShapeOpsUnitTest.hpp \
|
---|
56 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
57 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
58 | nodist_ShapeOpsUnitTest_SOURCES = \
|
---|
59 | ../Helpers/defs.hpp \
|
---|
60 | ../Helpers/defs.cpp
|
---|
61 | ShapeOpsUnitTest_LDADD = $(SHAPELIBS)
|
---|
62 |
|
---|
63 | Shape_HomogeneousPointsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
64 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp \
|
---|
65 | ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.hpp \
|
---|
66 | ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
|
---|
67 | ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
|
---|
68 | nodist_Shape_HomogeneousPointsUnitTest_SOURCES = \
|
---|
69 | ../Helpers/defs.hpp \
|
---|
70 | ../Helpers/defs.cpp
|
---|
71 | Shape_HomogeneousPointsUnitTest_LDADD = $(SHAPELIBS)
|
---|
72 |
|
---|
73 |
|
---|
74 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|