summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio71Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-02-14 20:35:34 (GMT)
committerBrad King <brad.king@kitware.com>2006-02-14 20:35:34 (GMT)
commitbd0b829ffb6bf540fb9d3938687705deea0532e2 (patch)
treedd3e19affb1bb9487c61d8e77a47cc31f6a96818 /Source/cmGlobalVisualStudio71Generator.h
parenteeab2c55ed0615032ae9935fc2e805feee689031 (diff)
downloadCMake-bd0b829ffb6bf540fb9d3938687705deea0532e2.zip
CMake-bd0b829ffb6bf540fb9d3938687705deea0532e2.tar.gz
CMake-bd0b829ffb6bf540fb9d3938687705deea0532e2.tar.bz2
BUG: Fixed generation of VS8 solution file to not be re-written when loaded by VS and to work with msbuild.
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.h')
-rw-r--r--Source/cmGlobalVisualStudio71Generator.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.h b/Source/cmGlobalVisualStudio71Generator.h
index e1ff825..fb52fa7 100644
--- a/Source/cmGlobalVisualStudio71Generator.h
+++ b/Source/cmGlobalVisualStudio71Generator.h
@@ -46,6 +46,7 @@ protected:
virtual void WriteSLNFile(std::ostream& fout,
cmLocalGenerator* root,
std::vector<cmLocalGenerator*>& generators);
+ virtual void WriteSolutionConfigurations(std::ostream& fout);
virtual void WriteProject(std::ostream& fout,
const char* name, const char* path, cmTarget &t);
virtual void WriteProjectDepends(std::ostream& fout,
@@ -55,5 +56,7 @@ protected:
const std::vector<std::string>& depends);
virtual void WriteSLNFooter(std::ostream& fout);
virtual void WriteSLNHeader(std::ostream& fout);
+
+ std::string m_ProjectConfigurationSectionName;
};
#endif