diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-02-25 01:32:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-08 18:05:39 (GMT) |
commit | 7abf4e313d8e8d59c38f402efaf9cca4e4a2d3ba (patch) | |
tree | 74f74a6301cdd27e3d504c95d2ff1d21ad8fa4da /Source/cmMakefile.h | |
parent | 94fc63e2d5402bc4fa570a92e1f5fe6aba088392 (diff) | |
download | CMake-7abf4e313d8e8d59c38f402efaf9cca4e4a2d3ba.zip CMake-7abf4e313d8e8d59c38f402efaf9cca4e4a2d3ba.tar.gz CMake-7abf4e313d8e8d59c38f402efaf9cca4e4a2d3ba.tar.bz2 |
stringapi: Use strings for dependency information
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index fb40c1b..460a85c 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -177,7 +177,7 @@ public: cmSourceFile* AddCustomCommandToOutput( const std::vector<std::string>& outputs, const std::vector<std::string>& depends, - const char* main_dependency, + const std::string& main_dependency, const cmCustomCommandLines& commandLines, const char* comment, const char* workingDir, bool replace = false, @@ -185,7 +185,7 @@ public: cmSourceFile* AddCustomCommandToOutput( const std::string& output, const std::vector<std::string>& depends, - const char* main_dependency, + const std::string& main_dependency, const cmCustomCommandLines& commandLines, const char* comment, const char* workingDir, bool replace = false, @@ -193,7 +193,7 @@ public: void AddCustomCommandOldStyle(const std::string& target, const std::vector<std::string>& outputs, const std::vector<std::string>& depends, - const char* source, + const std::string& source, const cmCustomCommandLines& commandLines, const char* comment); |