# 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 = \ libUnitTest.la \ ../libMolecuilderShapes.la \ $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} # $(BOOST_LIB) BaseShapesUnitTest_SOURCES = \ ../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 = \ ../Shapes/unittests/ShapeFactoryUnitTest.cpp \ ../Shapes/unittests/ShapeFactoryUnitTest.hpp \ ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp \ ../Shapes/unittests/stubs/moleculeStub.cpp \ ../Shapes/unittests/stubs/WorldSelectedMoleculesStub.cpp nodist_ShapeFactoryUnitTest_SOURCES = \ ../Helpers/defs.hpp \ ../Helpers/defs.cpp \ ../Shapes/ShapeFactory.cpp \ ../Shapes/ShapeFactory.hpp ShapeFactoryUnitTest_LDADD = \ ../libMolecuilderElement.la \ $(SHAPELIBS) ShapeOpsUnitTest_SOURCES = \ ../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 = \ ../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 = \ ../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