From 29c9f1bc2b2fc7886e4c19a197e6d4cd8c3292aa Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 30 Oct 2007 10:57:09 -0400 Subject: [PATCH] BUG: fix bad set property code in cmake --- Source/cmake.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 7dade6f84..f8c2482fe 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -3125,7 +3125,7 @@ void cmake::SetProperty(const char* prop, const char* value) value = "NOTFOUND"; } - this->Properties.SetProperty(prop, value, cmProperty::TARGET); + this->Properties.SetProperty(prop, value, cmProperty::GLOBAL); } const char *cmake::GetProperty(const char* prop)