mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-10 11:29:09 -05:00
cmSourceFile: Take a string
This commit is contained in:
@@ -86,7 +86,7 @@ public:
|
||||
* Return the vector that holds the list of dependencies
|
||||
*/
|
||||
const std::vector<std::string> &GetDepends() const {return this->Depends;}
|
||||
void AddDepend(const char* d) { this->Depends.push_back(d); }
|
||||
void AddDepend(const std::string& d) { this->Depends.push_back(d); }
|
||||
|
||||
// Get the properties
|
||||
cmPropertyMap &GetProperties() { return this->Properties; }
|
||||
|
||||
Reference in New Issue
Block a user