diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-09-10 19:11:15 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-09-10 19:11:15 (GMT) |
commit | 0fe42a98572f2339ee763a475ecdd003c8a80ac8 (patch) | |
tree | 26a6c316b460bbb65de5a7d4a826d38ae9086696 /Source/cmMakefile.h | |
parent | 5acb894e585f6f65741c102e74fd826b2250eb11 (diff) | |
download | CMake-0fe42a98572f2339ee763a475ecdd003c8a80ac8.zip CMake-0fe42a98572f2339ee763a475ecdd003c8a80ac8.tar.gz CMake-0fe42a98572f2339ee763a475ecdd003c8a80ac8.tar.bz2 |
various windows fixes
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); |