diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:41 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:43 (GMT) |
commit | 12bc571c13eda8d504eac788d6b3e5e8d83e3ad3 (patch) | |
tree | b12ebb344af549969ab5d7b8fafcd649aefb3057 /Source/cmGeneratorTarget.h | |
parent | 41abdc17df99662a8e99ba895050dbc8c0e34b8e (diff) | |
download | CMake-12bc571c13eda8d504eac788d6b3e5e8d83e3ad3.zip CMake-12bc571c13eda8d504eac788d6b3e5e8d83e3ad3.tar.gz CMake-12bc571c13eda8d504eac788d6b3e5e8d83e3ad3.tar.bz2 |
cmGeneratorTarget: Move GetAutoUicOptions from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 8e5c2ab..3e43711 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -156,6 +156,9 @@ public: SourceFileType Type; const char* MacFolder; // location inside Mac content folders }; + void GetAutoUicOptions(std::vector<std::string> &result, + const std::string& config) const; + struct SourceFileFlags GetTargetSourceFileFlags(const cmSourceFile* sf) const; @@ -176,7 +179,6 @@ private: struct SourceEntry { std::vector<cmSourceFile*> Depends; }; typedef std::map<cmSourceFile const*, SourceEntry> SourceEntriesType; SourceEntriesType SourceEntries; - mutable std::map<cmSourceFile const*, std::string> Objects; std::set<cmSourceFile const*> ExplicitObjectName; mutable std::map<std::string, std::vector<std::string> > SystemIncludesCache; |