mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- CGAL itself includes its library dependencies, we only need to provide the -L... option to the proper ThirdParty locations. Should help improve general build robustness.
14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
CGAL_INC = \
|
|
-I$(CGAL_ARCH_PATH)/include \
|
|
-I$(MPFR_ARCH_PATH)/include \
|
|
-I$(GMP_ARCH_PATH)/include \
|
|
-I$(BOOST_ARCH_PATH)/include \
|
|
-I/usr/include
|
|
|
|
CGAL_LIBS = \
|
|
-L$(MPFR_ARCH_PATH)/lib$(WM_COMPILER_LIB_ARCH) \
|
|
-L$(GMP_ARCH_PATH)/lib$(WM_COMPILER_LIB_ARCH) \
|
|
-L$(BOOST_ARCH_PATH)/lib \
|
|
-L$(CGAL_ARCH_PATH)/lib \
|
|
-lCGAL
|