50 lines
1019 B
Plaintext
50 lines
1019 B
Plaintext
#if false
|
|
|
|
EXE_FROUNDING_MATH = -frounding-math
|
|
EXE_NDEBUG = -DNDEBUG
|
|
USE_F2C = -DCGAL_USE_F2C
|
|
include $(GENERAL_RULES)/CGAL
|
|
|
|
EXE_INC = \
|
|
-DENABLE_CURVATURE \
|
|
${EXE_FROUNDING_MATH} \
|
|
${EXE_NDEBUG} \
|
|
${USE_F2C} \
|
|
${CGAL_INC} \
|
|
-ICGALPolyhedron \
|
|
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/edgeMesh/lnInclude \
|
|
-I$(LIB_SRC)/triSurface/lnInclude \
|
|
-I$(LIB_SRC)/surfMesh/lnInclude \
|
|
-I$(LIB_SRC)/sampling/lnInclude
|
|
|
|
EXE_LIBS = \
|
|
$(CGAL_LIBS) \
|
|
-L$(CGAL_ARCH_PATH)/lib \
|
|
-llapack \
|
|
-lblas \
|
|
-lCGAL \
|
|
-lmeshTools \
|
|
-ledgeMesh \
|
|
-ltriSurface \
|
|
-lsampling
|
|
|
|
#else
|
|
|
|
EXE_INC = \
|
|
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/edgeMesh/lnInclude \
|
|
-I$(LIB_SRC)/triSurface/lnInclude \
|
|
-I$(LIB_SRC)/surfMesh/lnInclude \
|
|
-I$(LIB_SRC)/sampling/lnInclude
|
|
|
|
EXE_LIBS = \
|
|
-lmeshTools \
|
|
-ledgeMesh \
|
|
-ltriSurface \
|
|
-lsampling
|
|
|
|
#endif
|