# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab SHAPETESTSSOURCES = \ ../Shapes/unittests/BaseShapesUnitTest.cpp \ ../Shapes/unittests/ShapeFactoryUnitTest.cpp \ ../Shapes/unittests/ShapeOpsUnitTest.cpp \ ../Shapes/unittests/ShapeRegistryUnitTest.cpp \ ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp SHAPETESTSHEADERS= \ ../Shapes/unittests/BaseShapesUnitTest.hpp \ ../Shapes/unittests/ShapeFactoryUnitTest.hpp \ ../Shapes/unittests/ShapeOpsUnitTest.hpp \ ../Shapes/unittests/ShapeRegistryUnitTest.hpp \ ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp SHAPETESTS = \ BaseShapesUnitTest \ ShapeFactoryUnitTest \ ShapeOpsUnitTest \ ShapeRegistryUnitTest \ Shape_HomogeneousPointsUnitTest TESTS += $(SHAPETESTS) check_PROGRAMS += $(SHAPETESTS) noinst_PROGRAMS += $(SHAPETESTS) SHAPELIBS = \ ../libMolecuilderShapes.la \ $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} # $(BOOST_LIB) BaseShapesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Shapes/unittests/BaseShapesUnitTest.cpp \ ../Shapes/unittests/BaseShapesUnitTest.hpp \ ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp nodist_BaseShapesUnitTest_SOURCES = \ ../Helpers/defs.hpp \ ../Helpers/defs.cpp BaseShapesUnitTest_LDADD = $(SHAPELIBS) ShapeFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Shapes/unittests/ShapeFactoryUnitTest.cpp \ ../Shapes/unittests/ShapeFactoryUnitTest.hpp \ ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp nodist_ShapeFactoryUnitTest_SOURCES = \ ../Helpers/defs.hpp \ ../Helpers/defs.cpp ShapeFactoryUnitTest_LDADD = $(SHAPELIBS) ShapeOpsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Shapes/unittests/ShapeOpsUnitTest.cpp \ ../Shapes/unittests/ShapeOpsUnitTest.hpp \ ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp nodist_ShapeOpsUnitTest_SOURCES = \ ../Helpers/defs.hpp \ ../Helpers/defs.cpp ShapeOpsUnitTest_LDADD = $(SHAPELIBS) ShapeRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Shapes/unittests/ShapeRegistryUnitTest.cpp \ ../Shapes/unittests/ShapeRegistryUnitTest.hpp \ ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp nodist_ShapeRegistryUnitTest_SOURCES = \ ../Helpers/defs.hpp \ ../Helpers/defs.cpp ShapeRegistryUnitTest_LDADD = $(SHAPELIBS) Shape_HomogeneousPointsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp \ ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.hpp \ ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp nodist_Shape_HomogeneousPointsUnitTest_SOURCES = \ ../Helpers/defs.hpp \ ../Helpers/defs.cpp Shape_HomogeneousPointsUnitTest_LDADD = $(SHAPELIBS) #AUTOMAKE_OPTIONS = parallel-tests