summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-01-25 20:44:52 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-01-25 20:44:52 (GMT)
commitbd531d3fae559666746e4072858ab404bed6107c (patch)
tree09d4d359d6e57fee203c10f5310b7b805bc627a8 /Source/cmLocalUnixMakefileGenerator3.h
parent2f84bd17581920eb5cbfc3b41e8cf477ba6a5853 (diff)
downloadCMake-bd531d3fae559666746e4072858ab404bed6107c.zip
CMake-bd531d3fae559666746e4072858ab404bed6107c.tar.gz
CMake-bd531d3fae559666746e4072858ab404bed6107c.tar.bz2
BUG: fix for 4186, kdevelop adding file twice
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.h34
1 files changed, 9 insertions, 25 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h
index 5fa78f7..7747b9c 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);