- remove unneeded -Wno-old-style flags with boost/cgal elements - add nvc equivalent to gcc/clang -Wno-invalid-offsetof - avoid warnings about set-but-unused variable and change of scoping STYLE: remove wmake 'CGAL' rule - was a transitional forward to 'cgal' rule since DEC-2020
20 lines
380 B
Plaintext
20 lines
380 B
Plaintext
EXE_NDEBUG = -DNDEBUG
|
|
/* EXE_NDEBUG = -g -O0 -DFULLDEBUG */
|
|
|
|
/*-- Define CGAL_INEXACT to use inexact CGAL constructions */
|
|
|
|
include $(GENERAL_RULES)/cgal
|
|
|
|
EXE_INC = \
|
|
${ROUNDING_MATH} \
|
|
${EXE_NDEBUG} \
|
|
${CGAL_INC} \
|
|
-I.. \
|
|
-I$(LIB_SRC)/surfMesh/lnInclude \
|
|
-I$(LIB_SRC)/meshTools/lnInclude
|
|
|
|
LIB_LIBS = \
|
|
${CGAL_LIBS} \
|
|
-lsurfMesh \
|
|
-lmeshTools
|