summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-11-07 12:45:52 (GMT)
committerBrad King <brad.king@kitware.com>2012-11-13 18:26:10 (GMT)
commit9f16d428a1146e4f108dd67e743c2c00911c4383 (patch)
tree9804ebb1564e6ce5017ffd0d0322ef03e28fb0c4 /Source/cmLocalVisualStudio7Generator.cxx
parentbd8bdb6fddcf45bdd558158e9129a5dbeef47a07 (diff)
downloadCMake-9f16d428a1146e4f108dd67e743c2c00911c4383.zip
CMake-9f16d428a1146e4f108dd67e743c2c00911c4383.tar.gz
CMake-9f16d428a1146e4f108dd67e743c2c00911c4383.tar.bz2
Resolve warnings about used enum values in switch blocks.
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index f9a2d32..cc5db24 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -1003,6 +1003,8 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
}
switch(target.GetType())
{
+ case cmTarget::UNKNOWN_LIBRARY:
+ break;
case cmTarget::OBJECT_LIBRARY:
{
std::string libpath = this->GetTargetDirectory(target);