diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 16:41:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-15 20:40:56 (GMT) |
commit | c4ae157865291d73113f81d4c9a9c2dd86598efc (patch) | |
tree | 8163dbedec892a7ea48b3548a9b17a954705e10c /Source/cmGeneratorExpressionContext.h | |
parent | 6d27a3dbfbfb8852d8b8ff5c6fc7432eebc604e5 (diff) | |
download | CMake-c4ae157865291d73113f81d4c9a9c2dd86598efc.zip CMake-c4ae157865291d73113f81d4c9a9c2dd86598efc.tar.gz CMake-c4ae157865291d73113f81d4c9a9c2dd86598efc.tar.bz2 |
Genex: Port some access API to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGeneratorExpressionContext.h')
-rw-r--r-- | Source/cmGeneratorExpressionContext.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/cmGeneratorExpressionContext.h b/Source/cmGeneratorExpressionContext.h index 934e2e7..e802138 100644 --- a/Source/cmGeneratorExpressionContext.h +++ b/Source/cmGeneratorExpressionContext.h @@ -18,7 +18,6 @@ #include <map> #include <string> -class cmTarget; class cmGeneratorTarget; class cmLocalGenerator; @@ -34,11 +33,11 @@ struct cmGeneratorExpressionContext cmListFileBacktrace Backtrace; - std::set<cmTarget*> DependTargets; - std::set<cmTarget const*> AllTargets; + std::set<cmGeneratorTarget*> DependTargets; + std::set<cmGeneratorTarget const*> AllTargets; std::set<std::string> SeenTargetProperties; - std::set<cmTarget const*> SourceSensitiveTargets; - std::map<cmTarget const*, std::map<std::string, std::string> > + std::set<cmGeneratorTarget const*> SourceSensitiveTargets; + std::map<cmGeneratorTarget const*, std::map<std::string, std::string> > MaxLanguageStandard; cmLocalGenerator *LG; std::string Config; |