diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-16 04:38:52 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-12 23:07:46 +0200 |
commit | 1583440509a148d216d6691cdaeede1aa24af95c (patch) | |
tree | bd79dcda7cd69b5f0257fd81d00e796c3462d273 /Source/cmGeneratorExpression.cxx | |
parent | 11165525ba663b4cd7a188c6b698822b8480aafb (diff) | |
download | cmake-1583440509a148d216d6691cdaeede1aa24af95c.tar.gz |
cmGeneratorExpression: Port interface to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGeneratorExpression.cxx')
-rw-r--r-- | Source/cmGeneratorExpression.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGeneratorExpression.cxx b/Source/cmGeneratorExpression.cxx index ef1679f683..d9f67f20fc 100644 --- a/Source/cmGeneratorExpression.cxx +++ b/Source/cmGeneratorExpression.cxx @@ -50,7 +50,7 @@ cmGeneratorExpression::~cmGeneratorExpression() //---------------------------------------------------------------------------- const char *cmCompiledGeneratorExpression::Evaluate(cmLocalGenerator* lg, const std::string& config, bool quiet, - cmTarget const* headTarget, + const cmGeneratorTarget* headTarget, cmGeneratorExpressionDAGChecker *dagChecker, std::string const& language) const { @@ -66,8 +66,8 @@ const char *cmCompiledGeneratorExpression::Evaluate(cmLocalGenerator* lg, //---------------------------------------------------------------------------- const char *cmCompiledGeneratorExpression::Evaluate( cmLocalGenerator* lg, const std::string& config, bool quiet, - cmTarget const* headTarget, - cmTarget const* currentTarget, + const cmGeneratorTarget* headTarget, + const cmGeneratorTarget* currentTarget, cmGeneratorExpressionDAGChecker *dagChecker, std::string const& language) const { |