diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-05-18 15:12:21 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-05-18 15:12:21 (GMT) |
commit | 16fc8d78f18a567e9f9b23605caa25865f5b30d6 (patch) | |
tree | 89fc5e950dd36d8cee6b95d9fbfbb5024b9e1d16 /Source/cmMakefileGenerator.h | |
parent | 06429282f5072df67016b914a53aedc8406178d5 (diff) | |
download | CMake-16fc8d78f18a567e9f9b23605caa25865f5b30d6.zip CMake-16fc8d78f18a567e9f9b23605caa25865f5b30d6.tar.gz CMake-16fc8d78f18a567e9f9b23605caa25865f5b30d6.tar.bz2 |
added SetLocal method
Diffstat (limited to 'Source/cmMakefileGenerator.h')
-rw-r--r-- | Source/cmMakefileGenerator.h | 9 |
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; }; |