summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-07-05 16:16:33 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-07-05 16:16:33 (GMT)
commit86195caf6ad23d6528748ad3879394b8709513c5 (patch)
tree2c48ed3825c1ad64ce0805d43a7cf2fb5e4b81e0 /Source/cmLocalVisualStudio7Generator.h
parentbbc9e4a9dcbe293a5054cf8296fa4fce7e9cea35 (diff)
downloadCMake-86195caf6ad23d6528748ad3879394b8709513c5.zip
CMake-86195caf6ad23d6528748ad3879394b8709513c5.tar.gz
CMake-86195caf6ad23d6528748ad3879394b8709513c5.tar.bz2
ENH: add support for VCExpress 2005
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.h')
-rw-r--r--Source/cmLocalVisualStudio7Generator.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h
index 3ac9a8f..275bbd7 100644
--- a/Source/cmLocalVisualStudio7Generator.h
+++ b/Source/cmLocalVisualStudio7Generator.h
@@ -63,7 +63,8 @@ public:
{
return m_CreatedProjectNames;
}
- void SetVersion71() {m_Version71 = true;}
+ void SetVersion71() {m_Version = 71;}
+ void SetVersion8() {m_Version = 8;}
virtual void ConfigureFinalPass();
private:
void OutputVCProjFile();
@@ -118,7 +119,7 @@ private:
std::string m_LibraryOutputPath;
std::string m_ExecutableOutputPath;
std::string m_ModuleDefinitionFile;
- bool m_Version71;
+ int m_Version;
};
#endif