openfoam/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Allwmake
Mark Olesen 7aeaf61cda ENH: getting foamToTecplot working again
- updated code to use current API level 142.

- ThirdParty build of tecio now uses CMake.
2016-11-11 09:42:28 +01:00

17 lines
596 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Parse arguments for application compilation (at least for error control)
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
export TECIO_ARCH_PATH=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/tecio
if [ -f $TECIO_ARCH_PATH/TECIO.h -a -r $TECIO_ARCH_PATH/libtecio.a ]
then
echo "Building optional tecplot conversion component."
wmake $targetType
else
echo "Skipping optional tecplot conversion components (no tecio detected)."
fi
#------------------------------------------------------------------------------