- Added conformationSurface and searchableSurface classes in place of querySurface. - Added cellSizeControl class. - Change cvMesh argument of relaxation model constructor to Time. - Add writePrecision option to surfaceConvert. - Add onLine function to surfaceFeatureExtract. - Remove querySurface. - Move createShellMesh and extrude2DMesh to their own libraries. - Replace controls and tolerances with a cv2DControls object. - Add patchToPoly2DMesh class to extrude2DMesh.
35 lines
1018 B
Plaintext
Executable File
35 lines
1018 B
Plaintext
Executable File
EXE_DEBUG = -DFULLDEBUG -g -O0
|
|
EXE_FROUNDING_MATH = -frounding-math
|
|
EXE_NDEBUG = -DNDEBUG
|
|
|
|
include $(GENERAL_RULES)/CGAL
|
|
FFLAGS = -DCGAL_FILES='"${CGAL_ARCH_PATH}/share/files"'
|
|
|
|
EXE_INC = \
|
|
${EXE_FROUNDING_MATH} \
|
|
${EXE_NDEBUG} \
|
|
${CGAL_INC} \
|
|
-I$(FOAM_APP)/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/lnInclude \
|
|
-I$(FOAM_APP)/utilities/mesh/generation/extrude/extrudeModel/lnInclude \
|
|
-IconformalVoronoi2DMesh/lnInclude \
|
|
-I$(FOAM_APP)/utilities/mesh/generation/cvMesh/conformalVoronoiMesh/lnInclude \
|
|
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/surfMesh/lnInclude \
|
|
-I$(LIB_SRC)/edgeMesh/lnInclude \
|
|
-I$(LIB_SRC)/dynamicMesh/lnInclude \
|
|
-I$(LIB_SRC)/triSurface/lnInclude
|
|
|
|
EXE_LIBS = \
|
|
$(CGAL_LIBS) \
|
|
-lextrude2DMesh \
|
|
-lextrudeModel \
|
|
-lcv2DMesh \
|
|
-lconformalVoronoiMesh \
|
|
-lmeshTools \
|
|
-lsurfMesh \
|
|
-ledgeMesh \
|
|
-ltriSurface \
|
|
-ldynamicMesh \
|
|
-ldecompositionMethods
|