diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-10-06 16:35:37 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-10-27 19:29:34 (GMT) |
commit | 25f1df3e816b62a518206cb88f69fdb15b2eebc9 (patch) | |
tree | ea8db5e42264c0b0bcd1004818264b8ea8488c2a /Source/cmGeneratorTarget.h | |
parent | b63c71aa35fffeef550ccf7f60382cbe794635ac (diff) | |
download | CMake-25f1df3e816b62a518206cb88f69fdb15b2eebc9.zip CMake-25f1df3e816b62a518206cb88f69fdb15b2eebc9.tar.gz CMake-25f1df3e816b62a518206cb88f69fdb15b2eebc9.tar.bz2 |
Split CreateGeneratorTargets into two methods.
As the generate-time-related API is moving to cmGeneratorTarget, almost
all of generation code needs to be able to access instances of it.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index dedfa60..e7e7d34 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -74,10 +74,10 @@ public: bool IsSystemIncludeDirectory(const char *dir, const char *config); -private: void ClassifySources(); void LookupObjectLibraries(); +private: std::map<std::string, std::vector<std::string> > SystemIncludesCache; cmGeneratorTarget(cmGeneratorTarget const&); |