mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
Targeting all building and linking to CGAL and boost installed to $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER. Reverting to CGAL 3.5.1, waiting for 3.6.1 - problem in 3.6 with boost 1.42.0. Removing MPFR_HOME variable, not needed as include and link is done with the $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER_ARCH versions.
22 lines
506 B
Plaintext
Executable File
22 lines
506 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$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/dynamicMesh/lnInclude \
|
|
-I$(LIB_SRC)/triSurface/lnInclude
|
|
|
|
EXE_LIBS = \
|
|
$(CGAL_LIBS) \
|
|
-lmeshTools \
|
|
-ltriSurface \
|
|
-ldynamicMesh
|