diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-02-08 04:55:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-08 18:05:34 (GMT) |
commit | 4c53997f3880785953e3ab6c811626b85ee67510 (patch) | |
tree | 24784301333ae1714051d1ec2c6f6e3eb525c526 /Source/cmMakefile.cxx | |
parent | 466abd846fdbe17f4cff8a6008396eb1887b70c3 (diff) | |
download | CMake-4c53997f3880785953e3ab6c811626b85ee67510.zip CMake-4c53997f3880785953e3ab6c811626b85ee67510.tar.gz CMake-4c53997f3880785953e3ab6c811626b85ee67510.tar.bz2 |
stringapi: Take strings for utility command names
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index a94e39c..7198523 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1188,7 +1188,7 @@ cmMakefile::AddCustomCommandOldStyle(const std::string& target, } //---------------------------------------------------------------------------- -void cmMakefile::AddUtilityCommand(const char* utilityName, +void cmMakefile::AddUtilityCommand(const std::string& utilityName, bool excludeFromAll, const std::vector<std::string>& depends, const char* workingDirectory, @@ -1227,7 +1227,7 @@ void cmMakefile::AddUtilityCommand(const char* utilityName, //---------------------------------------------------------------------------- cmTarget* -cmMakefile::AddUtilityCommand(const char* utilityName, +cmMakefile::AddUtilityCommand(const std::string& utilityName, bool excludeFromAll, const char* workingDirectory, const std::vector<std::string>& depends, |