diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-12-11 15:26:10 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-12-11 15:26:10 (GMT) |
commit | 179579bed7aa3e1d6894e0f8399e9a53ca450112 (patch) | |
tree | 1cae7421324a41a1ee94cc959da47ae4cf9396f4 /Source/cmake.cxx | |
parent | 09029e9cd864be132bb8b381635d95764f1209d4 (diff) | |
download | CMake-179579bed7aa3e1d6894e0f8399e9a53ca450112.zip CMake-179579bed7aa3e1d6894e0f8399e9a53ca450112.tar.gz CMake-179579bed7aa3e1d6894e0f8399e9a53ca450112.tar.bz2 |
ENH: improve SetProperties and fix a couple warnings
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index ba8334e..3f6143a 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -2854,19 +2854,14 @@ bool cmake::IsPropertyChained(const char *name, cmProperty::ScopeType scope) { case cmProperty::GLOBAL: return this->GlobalProperties.IsPropertyChained(name); - break; case cmProperty::TARGET: return this->TargetProperties.IsPropertyChained(name); - break; case cmProperty::SOURCE_FILE: return this->SourceFileProperties.IsPropertyChained(name); - break; case cmProperty::DIRECTORY: return this->DirectoryProperties.IsPropertyChained(name); - break; case cmProperty::TEST: return this->DirectoryProperties.IsPropertyChained(name); - break; } return false; |