mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
22 lines
592 B
Plaintext
22 lines
592 B
Plaintext
/* Note: enable vtkPolyhedron when available */
|
|
|
|
EXE_INC = \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/dynamicMesh/lnInclude \
|
|
-I$(LIB_SRC)/lagrangian/basic/lnInclude \
|
|
-I../PVFoamReader \
|
|
-I$(ParaView_INCLUDE_DIR) \
|
|
-I$(ParaView_INCLUDE_DIR)/vtkkwiml \
|
|
$(shell \
|
|
test -f $(ParaView_INCLUDE_DIR)/vtkPolyhedron.h && \
|
|
echo "-DHAS_VTK_POLYHEDRON" || echo "-UHAS_VTK_POLYHEDRON" \
|
|
)
|
|
|
|
LIB_LIBS = \
|
|
-ldynamicMesh \
|
|
-lgenericPatchFields \
|
|
-llagrangian \
|
|
-L$(FOAM_LIBBIN) \
|
|
$(GLIBS)
|