summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-02-05 14:05:32 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2007-02-05 14:05:32 -0500
commit3f0111586db377b4943e9a804303438cd159e73e (patch)
tree4cbf9c0f5c11ae423119a41b81eecaa504dd0a2e
parent4bf136ffc66837c58d8003b23428c61e8edff951 (diff)
downloadcmake-3f0111586db377b4943e9a804303438cd159e73e.tar.gz
ENH: merge changes from main trunk
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.h34
1 files changed, 9 insertions, 25 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h
index 45ec88f6e6..9caa51bdff 100644
--- a/Source/cmLocalUnixMakefileGenerator3.h
+++ b/Source/cmLocalUnixMakefileGenerator3.h
@@ -51,18 +51,6 @@ public:
virtual void Generate();
-
-
-
-
-
-
-
-
-
-
-
-
// this returns the relative path between the HomeOutputDirectory and this
// local generators StartOutputDirectory
const std::string &GetHomeRelativeOutputPath();
@@ -136,6 +124,15 @@ public:
void SetSilentNoColon(bool v) {this->SilentNoColon = v;}
/**
+ * If set to true, the CMake variable CMAKE_VERBOSE_MAKEFILES doesn't have
+ * anymore. Set it to true when writing a generator where short output
+ * doesn't make sense, e.g. because the full output is parsed by an
+ * IDE/editor.
+ */
+ void SetForceVerboseMakefiles(bool enable)
+ {this->ForceVerboseMakefiles=enable;}
+
+ /**
* Set the command to use for native make shell echo. The value
* should include all parts of the command up to the beginning of
* the message (including a whitespace separator).
@@ -267,19 +264,6 @@ protected:
void WriteDirectoryInformationFile();
-
-
-
-
-
-
-
-
-
-
-
-
-
// write the depend info
void WriteDependLanguageInfo(std::ostream& cmakefileStream, cmTarget &tgt);