codedFunctionObject: Add meshTools library to include and link line

This commit is contained in:
Henry
2015-04-25 21:57:40 +01:00
parent 2a7c6c18e3
commit 091b6bc857

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -83,10 +83,12 @@ void Foam::codedFunctionObject::prepare
( (
"EXE_INC = -g \\\n" "EXE_INC = -g \\\n"
"-I$(LIB_SRC)/finiteVolume/lnInclude \\\n" "-I$(LIB_SRC)/finiteVolume/lnInclude \\\n"
"-I$(LIB_SRC)/meshTools/lnInclude \\\n"
+ context.options() + context.options()
+ "\n\nLIB_LIBS = \\\n" + "\n\nLIB_LIBS = \\\n"
+ " -lOpenFOAM \\\n" + " -lOpenFOAM \\\n"
+ " -lfiniteVolume \\\n" + " -lfiniteVolume \\\n"
+ " -lmeshTools \\\n"
+ context.libs() + context.libs()
); );
} }