Skip to content
Snippets Groups Projects
Commit 69b16dec authored by Ruth Sabariego's avatar Ruth Sabariego
Browse files

No commit message

No commit message
parent 5f699c01
No related branches found
No related tags found
No related merge requests found
...@@ -24,12 +24,13 @@ set(SRC ...@@ -24,12 +24,13 @@ set(SRC
HarmonicToTime.cpp ModulusPhase.cpp HarmonicToTime.cpp ModulusPhase.cpp
HomologyComputation.cpp HomologyPostProcessing.cpp HomologyComputation.cpp HomologyPostProcessing.cpp
Distance.cpp ExtractEdges.cpp NearestNeighbor.cpp Distance.cpp ExtractEdges.cpp NearestNeighbor.cpp
AnalyseCurvedMesh.cpp AnalyseCurvedMesh.cpp
FieldFromAmplitudePhase.cpp FieldFromAmplitudePhase.cpp
Bubbles.cpp NearToFarField.cpp Bubbles.cpp NearToFarField.cpp
DiscretizationError.cpp DiscretizationError.cpp
Scal2Vec.cpp Scal2Vec.cpp
CutMesh.cpp CutMesh.cpp
NewView.cpp
) )
file(GLOB HDR RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h) file(GLOB HDR RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h)
......
...@@ -56,6 +56,7 @@ ...@@ -56,6 +56,7 @@
#include "DiscretizationError.h" #include "DiscretizationError.h"
#include "Scal2Vec.h" #include "Scal2Vec.h"
#include "CutMesh.h" #include "CutMesh.h"
#include "NewView.h"
// for testing purposes only :-) // for testing purposes only :-)
#undef HAVE_DLOPEN #undef HAVE_DLOPEN
...@@ -239,7 +240,8 @@ void PluginManager::registerDefaultPlugins() ...@@ -239,7 +240,8 @@ void PluginManager::registerDefaultPlugins()
("DiscretizationError", GMSH_RegisterDiscretizationErrorPlugin())); ("DiscretizationError", GMSH_RegisterDiscretizationErrorPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*> allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("Scal2Vec", GMSH_RegisterScal2VecPlugin())); ("Scal2Vec", GMSH_RegisterScal2VecPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("NewView", GMSH_RegisterNewViewPlugin()));
#if defined(HAVE_TETGEN) #if defined(HAVE_TETGEN)
allPlugins.insert(std::pair<std::string, GMSH_Plugin*> allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("Tetrahedralize", GMSH_RegisterTetrahedralizePlugin())); ("Tetrahedralize", GMSH_RegisterTetrahedralizePlugin()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment