diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-16 02:38:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-12 21:07:46 (GMT) |
commit | 1583440509a148d216d6691cdaeede1aa24af95c (patch) | |
tree | bd79dcda7cd69b5f0257fd81d00e796c3462d273 /Source/cmGeneratorExpressionContext.h | |
parent | 11165525ba663b4cd7a188c6b698822b8480aafb (diff) | |
download | CMake-1583440509a148d216d6691cdaeede1aa24af95c.zip CMake-1583440509a148d216d6691cdaeede1aa24af95c.tar.gz CMake-1583440509a148d216d6691cdaeede1aa24af95c.tar.bz2 |
cmGeneratorExpression: Port interface to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGeneratorExpressionContext.h')
-rw-r--r-- | Source/cmGeneratorExpressionContext.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmGeneratorExpressionContext.h b/Source/cmGeneratorExpressionContext.h index 5b6507d..bbf0fcf 100644 --- a/Source/cmGeneratorExpressionContext.h +++ b/Source/cmGeneratorExpressionContext.h @@ -19,14 +19,15 @@ #include <string> class cmTarget; +class cmGeneratorTarget; class cmLocalGenerator; //---------------------------------------------------------------------------- struct cmGeneratorExpressionContext { cmGeneratorExpressionContext(cmLocalGenerator* lg, std::string const& config, - bool quiet, cmTarget const* headTarget, - cmTarget const* currentTarget, + bool quiet, const cmGeneratorTarget* headTarget, + cmGeneratorTarget const* currentTarget, bool evaluateForBuildsystem, cmListFileBacktrace const& backtrace, std::string const& language); |