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