cmTarget: Make GetSourceFiles string overload private.
Consumers should use the cmSourceFile overload, which is now always the case.
This commit is contained in:
parent
92e2fbe103
commit
a4e6bf8e36
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue