ADD_LIBRARY(shaperecogn ${shaperecogn_SOURCES})
SET_TARGET_PROPERTIES(shaperecogn PROPERTIES COMPILE_FLAGS "")
-# if(WIN32)
- # add_library(shaperecogn_lib STATIC ${shaperecogn_SOURCES})
- # TARGET_LINK_LIBRARIES(shaperecogn_lib medcouplingcpp ${LAPACK_LIBRARIES})
- # set_target_properties(shaperecogn_lib PROPERTIES OUTPUT_NAME shaperecogn)
- # INSTALL(TARGETS shaperecogn EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
- # INSTALL(TARGETS shaperecogn_lib DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
- # TARGET_LINK_LIBRARIES(shaperecogn medcouplingcpp ${LAPACK_LIBRARIES})
-# else(WIN32)
- TARGET_LINK_LIBRARIES(shaperecogn medcouplingcpp ${LAPACK_LIBRARIES})
- INSTALL(TARGETS shaperecogn EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
-# endif(WIN32)
+TARGET_LINK_LIBRARIES(shaperecogn medcouplingcpp ${LAPACK_LIBRARIES})
+INSTALL(TARGETS shaperecogn EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
+
FILE(GLOB shaperecogn_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
# To allow usage as SWIG dependencies:
{
}
-Nodes::~Nodes()
-{
-
-}
-
mcIdType Nodes::getNbNodes() const
{
return coords->getNumberOfTuples();
Nodes(const MEDCouplingUMesh *mesh,
const DataArrayInt64 *neighbors,
const DataArrayInt64 *neighborsIdx);
- virtual ~Nodes();
mcIdType getNbNodes() const;
const std::vector<double> &getK1() const;
{
}
-ShapeRecognMesh::~ShapeRecognMesh()
-{
-
-}
-
std::size_t ShapeRecognMesh::getHeapMemorySizeWithoutChildren() const
{
return 0;
protected:
ShapeRecognMesh();
- virtual ~ShapeRecognMesh();
private:
MCAuto<MEDCouplingFieldDouble> nodeK1;
using namespace MEDCoupling;
-ShapeRecognMeshBuilder::~ShapeRecognMeshBuilder()
-{
- //comment
-}
ShapeRecognMeshBuilder::ShapeRecognMeshBuilder(MCAuto< MEDCouplingUMesh > mesh)
{
assign( mesh );
public:
ShapeRecognMeshBuilder(MCAuto< MEDCouplingUMesh > mesh);
ShapeRecognMeshBuilder(MEDCouplingUMesh *mesh);
- virtual ~ShapeRecognMeshBuilder();
const Nodes *getNodes() const;
const Areas *getAreas() const;
IF(NOT MEDCOUPLING_MICROMED)
SET(TESTSHAPE_RECOGN0 TestShapeRecogn)
ADD_EXECUTABLE(${TESTSHAPE_RECOGN0} ${TestShapeRecogn_SOURCES})
-# TARGET_LINK_LIBRARIES(${TESTSHAPE_RECOGN0} shaperecogn InterpKernelTestUtils medloader medcouplingcpp ${MEDFILE_C_LIBRARIES} ${HDF5_LIBRARIES} ${CPPUNIT_LIBRARIES} ${PLATFORM_LIBS} ${CBLAS_LIBRARIES})
TARGET_LINK_LIBRARIES(${TESTSHAPE_RECOGN0} shaperecogn InterpKernelTestUtils medloader medcouplingcpp ${CPPUNIT_LIBRARIES} ${PLATFORM_LIBS} ${CBLAS_LIBRARIES})
INSTALL(TARGETS ${TESTSHAPE_RECOGN0} DESTINATION ${MEDCOUPLING_INSTALL_BINS})