Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Mesh/MakefileVariables.inc
Go to the documentation of this file.
1 MESHDIR = $(srcdir)/Mesh
2 
3 MESHSRCFILES = CornerTag.cpp \ MeshSet.cpp \ MsqMeshEntity.cpp \ MsqVertex.cpp \ PatchData.cpp \ MeshImpl.cpp \ MeshImplData.cpp \ MeshImplTags.cpp \ TopologyInfo.cpp
4 
5 ifeq ($(MSQ_TSTT_MESH),yes)
6  MESHSRCFILES += MeshTSTT.cpp
7 endif
8 
9 ifeq ($(MSQ_TSTT_GEOM),yes)
10  MESHSRCFILES += GeomTSTT.cpp
11 endif
12 
13 MESHSRC = $(MESHSRCFILES:%=$(MESHDIR)/%)
14 
15 MESHHEADERS = \
16  $(patsubst $(MESHDIR)/%,$(localincludedir)/%,\
17  $(wildcard $(MESHDIR)/*.hpp)) \
18  $(patsubst $(MESHDIR)/%,$(localincludedir)/%,\
19  $(wildcard $(MESHDIR)/*.hh))
20 
21 MESHOBJ = $(patsubst $(MESHDIR)/%.cpp, obj/%.o,$(MESHSRC))
22 
23 ALL_MSQ_OBJ += $(MESHOBJ)
24 
Class Mesh is the main class that holds all information to describe the current state of the mesh...
Definition: Mesh.hpp:19