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/cmMSProjectGenerator.h | |
parent | 06429282f5072df67016b914a53aedc8406178d5 (diff) | |
download | CMake-16fc8d78f18a567e9f9b23605caa25865f5b30d6.zip CMake-16fc8d78f18a567e9f9b23605caa25865f5b30d6.tar.gz CMake-16fc8d78f18a567e9f9b23605caa25865f5b30d6.tar.bz2 |
added SetLocal method
Diffstat (limited to 'Source/cmMSProjectGenerator.h')
-rw-r--r-- | Source/cmMSProjectGenerator.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmMSProjectGenerator.h b/Source/cmMSProjectGenerator.h index b80e03b..a4f568b 100644 --- a/Source/cmMSProjectGenerator.h +++ b/Source/cmMSProjectGenerator.h @@ -70,20 +70,21 @@ public: */ virtual void GenerateMakefile(); + //! controls the DSW/DSP settings + virtual void SetLocal(bool); + /** * Turn off the generation of a Microsoft Visual C++ DSW file. * This causes only the dsp file to be created. This * is used to run as a command line program from inside visual * studio. */ - void BuildDSWOff() - {m_BuildDSW = false;} + void BuildDSWOff() {m_BuildDSW = false;} /** * Turn on the generation of a Microsoft Visual C++ DSW file. */ - void BuildDSWOn() - {m_BuildDSW = true;} + void BuildDSWOn() {m_BuildDSW = true;} /** * Retrieve a pointer to a cmDSWMakefile instance. |