mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
On 64-bit systems, the system installations of boost, cgal are under
lib64/. The behaviour for a ThirdParty build is mostly lib/ but this
can also be changing.
Boost 1_62_0 and older build into 'lib/'.
CGAL-4.9 builds into 'lib64/', older versions into 'lib/'.
Future-proof things by using lib$WM_COMPILER_LIB_ARCH for boost and
cgal build rules, and forcing these as build targets in the ThirdParty
makeCGAL as well.
--
STYLE: check for boost/version.hpp, CGAL/version.h instead their directories
25 lines
558 B
Plaintext
25 lines
558 B
Plaintext
EXE_NDEBUG = -DNDEBUG
|
|
/* EXE_NDEBUG = -g -O0 -DFULLDEBUG */
|
|
|
|
c++CGALWARN = -Wno-old-style-cast
|
|
|
|
/*-- Define CGAL_INEXACT to use inexact CGAL constructions */
|
|
|
|
include $(GENERAL_RULES)/CGAL
|
|
|
|
EXE_INC = \
|
|
${ROUNDING_MATH} \
|
|
${EXE_NDEBUG} \
|
|
${CGAL_INC} \
|
|
${c++CGALWARN} \
|
|
-I.. \
|
|
-I$(FOAM_SRC)/surfMesh/lnInclude \
|
|
-I$(FOAM_SRC)/triSurface/lnInclude \
|
|
-I$(LIB_SRC)/edgeMesh/lnInclude \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I/usr/include/Qt
|
|
|
|
LIB_LIBS = \
|
|
-L$(CGAL_ARCH_PATH)/lib$(WM_COMPILER_LIB_ARCH) \
|
|
-ltriSurface
|