diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-05 10:35:43 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-06 08:02:34 (GMT) |
commit | a4e6bf8e36e6fa38bb40dc6df2345922de86bad4 (patch) | |
tree | 1e0f4d2dd57644725029f8e6c8b384bf119ba922 /Source/cmTarget.h | |
parent | 92e2fbe103c6ffc3af1189d0450493488c65baaa (diff) | |
download | CMake-a4e6bf8e36e6fa38bb40dc6df2345922de86bad4.zip CMake-a4e6bf8e36e6fa38bb40dc6df2345922de86bad4.tar.gz CMake-a4e6bf8e36e6fa38bb40dc6df2345922de86bad4.tar.bz2 |
cmTarget: Make GetSourceFiles string overload private.
Consumers should use the cmSourceFile overload, which is now
always the case.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index a8ac57f..da9d0a1 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -135,9 +135,6 @@ public: /** * Get the list of the source files used by this target */ - void GetSourceFiles(std::vector<std::string> &files, - const std::string& config, - cmTarget const* head = 0) const; void GetSourceFiles(std::vector<cmSourceFile*> &files, const std::string& config, cmTarget const* head = 0) const; @@ -683,6 +680,9 @@ private: const std::string& config, bool contentOnly) const; + void GetSourceFiles(std::vector<std::string> &files, + const std::string& config, + cmTarget const* head = 0) const; private: std::string Name; std::vector<cmCustomCommand> PreBuildCommands; |