mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- drop FOAM_MPI_LIBBIN variable in favour of FOAM_MPI from which
two different locations can be determined.
Previously there was something like this:
FOAM_MPI_LIBBIN = $FOAM_LIBBIN/openmpi-1.5.1
We now instead determine the locations from the FOAM_MPI directly:
FOAM_MPI=openmpi-1.5.1
$FOAM_LIBBIN/$FOAM_MPI -> OpenFOAM mpi-related
$FOAM_EXT_LIBBIN/$FOAM_MPI -> ThirdPary mpi-related
ENH: relocate ParaView libraries and plugins back under FOAM_LIBBIN
- as discussed with Mattijs
15 lines
354 B
Plaintext
15 lines
354 B
Plaintext
PARAVIEW_INC = $(ParaView_DIR)/include/paraview-$(ParaView_MAJOR)
|
|
|
|
EXE_INC = \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/mesh/blockMesh/lnInclude \
|
|
-I$(PARAVIEW_INC) \
|
|
-I../../vtkPV3Readers/lnInclude \
|
|
-I../PV3blockMeshReader
|
|
|
|
LIB_LIBS = \
|
|
-lmeshTools \
|
|
-lblockMesh \
|
|
-L$(FOAM_LIBBIN) -lvtkPV3Readers \
|
|
$(GLIBS)
|