diff options
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index a7e0740..41c2c44 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -24,7 +24,7 @@ class cmGlobalGenerator; class cmTarget; class cmTargetManifest; class cmSourceFile; - +class cmCustomCommand; /** \class cmLocalGenerator * \brief Create required build files for a directory. @@ -211,6 +211,10 @@ protected: const char* workingDirectory, const char* newline = "\n"); + /** Construct a comment for a custom command. */ + std::string ConstructComment(const cmCustomCommand& cc, + const char* default_comment = ""); + /** Fill out these strings for the given target. Libraries to link, * flags, and linkflags. */ void GetTargetFlags(std::string& linkLibs, |