From 0b7e1f53987dc5e95bbfb538e9feb840cd317ebd Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 5 Dec 2006 10:36:33 -0500 Subject: [PATCH] ENH: fix compiler warning --- Source/cmPropertyDefinition.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/cmPropertyDefinition.cxx b/Source/cmPropertyDefinition.cxx index 817a0d6f2..02b731bbe 100644 --- a/Source/cmPropertyDefinition.cxx +++ b/Source/cmPropertyDefinition.cxx @@ -53,6 +53,10 @@ void cmPropertyDefinition break; case cmProperty::DIRECTORY: this->LongName += " on a directory"; break; + case cmProperty::GLOBAL: this->LongName += " globaly"; + break; + case cmProperty::TEST: this->LongName += " on CTest"; + break; } }