summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileGenerator.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmMakefileGenerator.h')
-rw-r--r--Source/cmMakefileGenerator.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmMakefileGenerator.h b/Source/cmMakefileGenerator.h
index fec80a2..72832b2 100644
--- a/Source/cmMakefileGenerator.h
+++ b/Source/cmMakefileGenerator.h
@@ -67,6 +67,15 @@ public:
*/
virtual void GenerateMakefile() = 0;
+ /**
+ * The local setting indicates that the generator is producing a
+ * fully configured makefile in the current directory. In Microsoft
+ * terms it is producing a DSP file if local is true and a DSW file
+ * if local is false. On UNIX when local is false it skips the
+ * dependecy check and recurses the full tree building the structure
+ */
+ virtual void SetLocal(bool ) {};
+
protected:
cmMakefile* m_Makefile;
};