diff options
author | Brad King <brad.king@kitware.com> | 2006-10-04 22:10:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-10-04 22:10:30 (GMT) |
commit | 5a6b0792cd5b3dd16b8a94091db15e02e9b4a00b (patch) | |
tree | 0555eb82a57d07bddefdfb3cf3760f1042fa763d /Source/cmMakefile.h | |
parent | 168591e72dd3d67ae2ced24582e6b117a9a2ac4f (diff) | |
download | CMake-5a6b0792cd5b3dd16b8a94091db15e02e9b4a00b.zip CMake-5a6b0792cd5b3dd16b8a94091db15e02e9b4a00b.tar.gz CMake-5a6b0792cd5b3dd16b8a94091db15e02e9b4a00b.tar.bz2 |
ENH: Added COMMENT option to ADD_CUSTOM_TARGET. This addresses bug#3461.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 094fee9..942858e 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -195,7 +195,8 @@ public: const char* workingDirectory, const std::vector<std::string>& depends, const cmCustomCommandLines& commandLines, - bool escapeOldStyle = true); + bool escapeOldStyle = true, + const char* comment = 0); /** * Add a link library to the build. |