Skip to content
Snippets Groups Projects
Commit 1c4e2138 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

cleanup

parent 6e8f9848
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,9 @@
#include <vector>
#include <set>
#include "GFaceCompound.h"
#include <list>
class GEdge;
class GFace;
class MVertex;
class GFaceCompound;
......@@ -20,8 +21,8 @@ class meshGFace {
int twoPassesMesh;
bool onlyInitialMesh;
public :
meshGFace (bool r = true, int t = 0) : repairSelfIntersecting1dMesh(r), twoPassesMesh(t)
,onlyInitialMesh(false)
meshGFace(bool r = true, int t = 0)
: repairSelfIntersecting1dMesh(r), twoPassesMesh(t), onlyInitialMesh(false)
{
}
void operator()(GFace *);
......
......@@ -14,7 +14,7 @@ project(api_demos CXX)
add_subdirectory(../.. "${CMAKE_CURRENT_BINARY_DIR}/gmsh")
include_directories(../../Common ../../Numeric ../../Geo ../../Mesh
../../Solver ../../Post ../../Plugin ../../Graphics
../../Solver ../../Post ../../Plugin ../../Graphics ../../contrib/ANN/include
../../contrib/DiscreteIntegration ${GMSH_EXTERNAL_INCLUDE_DIRS}
${CMAKE_CURRENT_BINARY_DIR}/gmsh/Common)
......@@ -50,3 +50,6 @@ target_link_libraries(mainPost shared)
add_executable(mainSimple mainSimple.cpp)
target_link_libraries(mainSimple shared)
add_executable(mainMoving mainMoving.cpp)
target_link_libraries(mainMoving shared)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment