diff --git a/etc/codeTemplates/source/foamNewSource b/etc/codeTemplates/source/foamNewSource index 1ece48d5ada98aff29eb2d615b00476130008ad2..6469aa3b324c1f4aabe6a6e68b278e2b4b9e33c5 100755 --- a/etc/codeTemplates/source/foamNewSource +++ b/etc/codeTemplates/source/foamNewSource @@ -96,7 +96,7 @@ else fileName="$className$Type" - echo "$Script: Creating new interface file $fileName" + echo "$Script: Creating new code file $fileName" if [ -e "$fileName" ] then echo " Error: file exists" diff --git a/wmake/scripts/makeOptions b/wmake/scripts/makeOptions index 864f08f84e20f108a192ab6b35ce3158c7eb0a63..6101889ec5ac41b58aeaf1cc41155c05c2b2b9cc 100755 --- a/wmake/scripts/makeOptions +++ b/wmake/scripts/makeOptions @@ -32,9 +32,11 @@ rm -f Make/options echo "Creating Make/options" echo 'EXE_INC = \ - -I$(LIB_SRC)/finiteVolume/lnInclude' > Make/options + -I$(LIB_SRC)/finiteVolume/lnInclude \ + -I$(LIB_SRC)/meshTools/lnInclude' > Make/options echo >> Make/options echo 'EXE_LIBS = \ - -lfiniteVolume' >> Make/options + -lfiniteVolume \ + -lmeshTools' >> Make/options #------------------------------------------------------------------------------