summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorExpressionContext.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-10 16:27:10 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-15 20:40:55 (GMT)
commit6d27a3dbfbfb8852d8b8ff5c6fc7432eebc604e5 (patch)
treeba591f48af9d8238dffa075f56757e300a108aa7 /Source/cmGeneratorExpressionContext.h
parent088fcbf733a7d1968fc3586a7077f22cb41e1917 (diff)
downloadCMake-6d27a3dbfbfb8852d8b8ff5c6fc7432eebc604e5.zip
CMake-6d27a3dbfbfb8852d8b8ff5c6fc7432eebc604e5.tar.gz
CMake-6d27a3dbfbfb8852d8b8ff5c6fc7432eebc604e5.tar.bz2
Genex: Port implementation to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGeneratorExpressionContext.h')
-rw-r--r--Source/cmGeneratorExpressionContext.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmGeneratorExpressionContext.h b/Source/cmGeneratorExpressionContext.h
index bbf0fcf..934e2e7 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;