25 lines
791 B
Bash
Executable File
25 lines
791 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Build optional components (eg, may depend on third-party libraries)
|
|
#------------------------------------------------------------------------------
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Parse arguments for compilation (at least for error catching)
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
|
|
# Get version info and arch-path
|
|
. $WM_PROJECT_DIR/etc/config.sh/functions
|
|
_foamSource $($WM_PROJECT_DIR/bin/foamEtcFile config.sh/ccmio)
|
|
|
|
set -x
|
|
|
|
# Build libccmio (.a|.so)
|
|
$WM_THIRD_PARTY_DIR/makeCCMIO lib # libso
|
|
|
|
if [ -e $CCMIO_ARCH_PATH/include/libccmio/ccmio.h \
|
|
-a \( -e $CCMIO_ARCH_PATH/lib/libccmio.a -o $FOAM_EXT_LIBBIN/libccmio.so \) ]
|
|
then
|
|
wmake ccm26ToFoam
|
|
fi
|
|
|
|
#------------------------------------------------------------------------------
|