mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
PV4FoamReaders: Updated to build with ParaView-5.0.0 paraFoam: Updated to load PV4FoamReaders for ParaView-5.0.0 Currently this is experimental but if it becomes clear that ParaView-4 and ParaView-5 are and will remain consistent with respect to readers the plan is to rename PV4 -> PV or PV4 -> PV45 if it is assumed that PV6 may need to be different.
23 lines
625 B
Plaintext
23 lines
625 B
Plaintext
/* Note: enable vtkPolyhedron when available */
|
|
|
|
EXE_INC = \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/lagrangian/basic/lnInclude \
|
|
-I../../vtkPV4Readers/lnInclude \
|
|
-I../PV4FoamReader \
|
|
-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 = \
|
|
-lmeshTools \
|
|
-lfiniteVolume \
|
|
-lgenericPatchFields \
|
|
-llagrangian \
|
|
-L$(FOAM_LIBBIN) -lvtkPV4Readers \
|
|
$(GLIBS)
|