Skip to content
Snippets Groups Projects
Commit c461ad8f authored by Mark Olesen's avatar Mark Olesen
Browse files

made ccm26ToFoam build conditional on ThirdParty library

parent 14fefb05
No related merge requests found
#!/bin/sh
# Build optional components (eg, may depend on third-party libraries)
set -x
# if the library exists, assume there are headers too
if [ -e $FOAM_LIBBIN/libccmio.so ]
then
wmake ccm26ToFoam
fi
# end
#!/bin/sh
set -x
wmake ccm26ToFoam
thirdParty=$(WM_PROJECT_INST_DIR)/ThirdParty
EXE_INC = \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(LIB_SRC)/meshTools/lnInclude \
-I$(LIB_SRC)/other/libccmio \
-I$(LIB_SRC)/other/libccmio/libccmio/lnInclude
-I$(thirdParty)/libccmio \
-I$(thirdParty)/libccmio/lnInclude
EXE_LIBS = \
-lfiniteVolume \
-lmeshTools \
-lccmio \
-ladf
-lccmio
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment