Browse Source

BUG: fix bad set property code in cmake

Ken Martin 18 years ago
parent
commit
29c9f1bc2b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmake.cxx

+ 1 - 1
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)