default whern surface does not support volumeType. BUG: conformalVoronoiMesh. Making test "totalHits >= hitLimit" rather than "totalHits = hitLimit" to be strictly consistent and always trigger the iteration termination message.
25 lines
587 B
Plaintext
25 lines
587 B
Plaintext
EXE_DEBUG = -DFULLDEBUG -g -O0
|
|
EXE_FROUNDING_MATH = -frounding-math
|
|
EXE_NDEBUG = -DNDEBUG
|
|
|
|
include $(GENERAL_RULES)/CGAL
|
|
|
|
EXE_INC = \
|
|
${EXE_FROUNDING_MATH} \
|
|
${EXE_NDEBUG} \
|
|
${CGAL_INC} \
|
|
-I$(LIB_SRC)/mesh/conformalVoronoiMesh/lnInclude \
|
|
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/edgeMesh/lnInclude \
|
|
-I$(LIB_SRC)/dynamicMesh/lnInclude \
|
|
-I$(LIB_SRC)/triSurface/lnInclude
|
|
|
|
EXE_LIBS = \
|
|
$(CGAL_LIBS) \
|
|
-lconformalVoronoiMesh \
|
|
-lmeshTools \
|
|
-ledgeMesh \
|
|
-ltriSurface \
|
|
-ldynamicMesh
|