20 lines
352 B
Bash
Executable File
20 lines
352 B
Bash
Executable File
#!/bin/sh
|
|
# Build optional components (eg, may depend on third-party libraries)
|
|
set -x
|
|
|
|
# build libccmio if required
|
|
if [ ! -e $FOAM_LIBBIN/libccmio.so ]
|
|
then
|
|
(
|
|
cd $WM_PROJECT_DIR/../ThirdParty && ./AllwmakeLibccmio
|
|
)
|
|
fi
|
|
|
|
# if the library built okay, the headers must exist too
|
|
if [ -e $FOAM_LIBBIN/libccmio.so ]
|
|
then
|
|
wmake ccm26ToFoam
|
|
fi
|
|
|
|
# end
|