summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-05 10:35:43 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-06 08:02:34 (GMT)
commita4e6bf8e36e6fa38bb40dc6df2345922de86bad4 (patch)
tree1e0f4d2dd57644725029f8e6c8b384bf119ba922 /Source
parent92e2fbe103c6ffc3af1189d0450493488c65baaa (diff)
downloadCMake-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')
-rw-r--r--Source/cmTarget.h6
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;