mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
- redistributePar to have almost (complete) functionality of decomposePar+reconstructPar - low-level distributed Field mapping - support for mapping surfaceFields (including flipping faces) - support for decomposing/reconstructing refinement data
24 lines
645 B
Plaintext
24 lines
645 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../../vtkPV4Readers/lnInclude \
|
|
-I../PV4FoamReader \
|
|
-I$(ParaView_INCLUDE_DIR) \
|
|
$(shell \
|
|
test -f $(ParaView_INCLUDE_DIR)/vtkPolyhedron.h && \
|
|
echo "-DHAS_VTK_POLYHEDRON" || echo "-UHAS_VTK_POLYHEDRON" \
|
|
)
|
|
|
|
LIB_LIBS = \
|
|
-lmeshTools \
|
|
-lfiniteVolume \
|
|
-ldynamicMesh \
|
|
-lgenericPatchFields \
|
|
-llagrangian \
|
|
-L$(FOAM_LIBBIN) -lvtkPV4Readers \
|
|
$(GLIBS)
|