diff options
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 3b41a71..83c0ab0 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -136,14 +136,14 @@ public: */ void AddCustomCommand(const char* source, const char* command, - const char* commandArgs, + const std::vector<std::string>& commandArgs, const std::vector<std::string>& depends, const std::vector<std::string>& outputs, const char *target); void AddCustomCommand(const char* source, const char* command, - const char* commandArgs, + const std::vector<std::string>& commandArgs, const std::vector<std::string>& depends, const char* output, const char* target); |