diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-10-27 19:31:03 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-10-27 19:31:03 (GMT) |
commit | 749dbcdc6e281beb8602dbbb0c5c3a06f3ece6b6 (patch) | |
tree | fcff42d07ed658bf2168c31ffc3c915b4784ac5e /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 3a97e4699c577a940989af45266e21d57e0d5b4e (diff) | |
download | CMake-749dbcdc6e281beb8602dbbb0c5c3a06f3ece6b6.zip CMake-749dbcdc6e281beb8602dbbb0c5c3a06f3ece6b6.tar.gz CMake-749dbcdc6e281beb8602dbbb0c5c3a06f3ece6b6.tar.bz2 |
ENH: make the scc optional
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 186b0fe..2093099 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1833,20 +1833,8 @@ cmLocalVisualStudio7Generator::WriteProjectStart(std::ostream& fout, keyword = "Win32Proj"; } const char* vsProjectname = target.GetProperty("VS_SCC_PROJECTNAME"); - if (!vsProjectname) - { - vsProjectname = ""; - } const char* vsLocalpath = target.GetProperty("VS_SCC_LOCALPATH"); - if (!vsLocalpath) - { - vsLocalpath = ""; - } const char* vsProvider = target.GetProperty("VS_SCC_PROVIDER"); - if (!vsProvider) - { - vsProvider = ""; - } cmGlobalVisualStudio7Generator* gg = static_cast<cmGlobalVisualStudio7Generator *>(this->GlobalGenerator); fout << "\tName=\"" << projLabel << "\"\n"; |