summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2014-02-08 04:55:28 (GMT)
committerBrad King <brad.king@kitware.com>2014-03-08 18:05:34 (GMT)
commit4c53997f3880785953e3ab6c811626b85ee67510 (patch)
tree24784301333ae1714051d1ec2c6f6e3eb525c526 /Source/cmMakefile.h
parent466abd846fdbe17f4cff8a6008396eb1887b70c3 (diff)
downloadCMake-4c53997f3880785953e3ab6c811626b85ee67510.zip
CMake-4c53997f3880785953e3ab6c811626b85ee67510.tar.gz
CMake-4c53997f3880785953e3ab6c811626b85ee67510.tar.bz2
stringapi: Take strings for utility command names
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 6475c0f..39635dd 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -222,7 +222,7 @@ public:
* Add a utility to the build. A utiltity target is a command that
* is run every time the target is built.
*/
- void AddUtilityCommand(const char* utilityName, bool excludeFromAll,
+ void AddUtilityCommand(const std::string& utilityName, bool excludeFromAll,
const std::vector<std::string>& depends,
const char* workingDirectory,
const char* command,
@@ -230,7 +230,8 @@ public:
const char* arg2=0,
const char* arg3=0,
const char* arg4=0);
- cmTarget* AddUtilityCommand(const char* utilityName, bool excludeFromAll,
+ cmTarget* AddUtilityCommand(const std::string& utilityName,
+ bool excludeFromAll,
const char* workingDirectory,
const std::vector<std::string>& depends,
const cmCustomCommandLines& commandLines,