Mark's correction to the building of libccmio.so

This commit is contained in:
henry
2008-06-09 13:37:13 +01:00
parent 232e3db40a
commit 91c5607c97
22 changed files with 10 additions and 2910 deletions

View File

@ -2,11 +2,18 @@
# Build optional components (eg, may depend on third-party libraries)
set -x
# if the library exists, assume there are headers too
# 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
( cd $WM_PROJECT_DIR/../ThirdParty && ./AllwmakeLibccmio ) \
&& wmake ccm26ToFoam
wmake ccm26ToFoam
fi
# end