diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 18:27:10 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-15 22:40:55 +0200 |
commit | 6d27a3dbfbfb8852d8b8ff5c6fc7432eebc604e5 (patch) | |
tree | ba591f48af9d8238dffa075f56757e300a108aa7 /Source/cmGeneratorExpressionContext.h | |
parent | 088fcbf733a7d1968fc3586a7077f22cb41e1917 (diff) | |
download | cmake-6d27a3dbfbfb8852d8b8ff5c6fc7432eebc604e5.tar.gz |
Genex: Port implementation to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGeneratorExpressionContext.h')
-rw-r--r-- | Source/cmGeneratorExpressionContext.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmGeneratorExpressionContext.h b/Source/cmGeneratorExpressionContext.h index bbf0fcfec7..934e2e7353 100644 --- a/Source/cmGeneratorExpressionContext.h +++ b/Source/cmGeneratorExpressionContext.h @@ -43,9 +43,11 @@ struct cmGeneratorExpressionContext cmLocalGenerator *LG; std::string Config; std::string Language; - cmTarget const* HeadTarget; // The target whose property is being evaluated. - cmTarget const* CurrentTarget; // The dependent of HeadTarget which appears - // directly or indirectly in the property. + // The target whose property is being evaluated. + cmGeneratorTarget const* HeadTarget; + // The dependent of HeadTarget which appears + // directly or indirectly in the property. + cmGeneratorTarget const* CurrentTarget; bool Quiet; bool HadError; bool HadContextSensitiveCondition; |