summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-10-30 14:57:09 (GMT)
committerKen Martin <ken.martin@kitware.com>2007-10-30 14:57:09 (GMT)
commit29c9f1bc2b2fc7886e4c19a197e6d4cd8c3292aa (patch)
treeec8ae9e0883b8eeea3afe15c889a1652dde5d199 /Source
parent09c49cf65826493d0e40ea22d9d30177d1eec93e (diff)
downloadCMake-29c9f1bc2b2fc7886e4c19a197e6d4cd8c3292aa.zip
CMake-29c9f1bc2b2fc7886e4c19a197e6d4cd8c3292aa.tar.gz
CMake-29c9f1bc2b2fc7886e4c19a197e6d4cd8c3292aa.tar.bz2
BUG: fix bad set property code in cmake
Diffstat (limited to 'Source')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 7dade6f..f8c2482 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)