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/cmGeneratorExpression.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/cmGeneratorExpression.h')
-rw-r--r-- | Source/cmGeneratorExpression.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmGeneratorExpression.h b/Source/cmGeneratorExpression.h index 8843e0a..d64d6ba 100644 --- a/Source/cmGeneratorExpression.h +++ b/Source/cmGeneratorExpression.h @@ -20,6 +20,7 @@ #include <cmsys/auto_ptr.hxx> class cmTarget; +class cmGeneratorTarget; class cmLocalGenerator; class cmListFileBacktrace; @@ -80,13 +81,13 @@ class cmCompiledGeneratorExpression public: const char* Evaluate(cmLocalGenerator* lg, const std::string& config, bool quiet = false, - cmTarget const* headTarget = 0, - cmTarget const* currentTarget = 0, + cmGeneratorTarget const* headTarget = 0, + cmGeneratorTarget const* currentTarget = 0, cmGeneratorExpressionDAGChecker *dagChecker = 0, std::string const& language = std::string()) const; const char* Evaluate(cmLocalGenerator* lg, const std::string& config, bool quiet, - cmTarget const* headTarget, + cmGeneratorTarget const* headTarget, cmGeneratorExpressionDAGChecker *dagChecker, std::string const& language = std::string()) const; |