diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-30 14:57:09 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-30 14:57:09 (GMT) |
commit | 29c9f1bc2b2fc7886e4c19a197e6d4cd8c3292aa (patch) | |
tree | ec8ae9e0883b8eeea3afe15c889a1652dde5d199 | |
parent | 09c49cf65826493d0e40ea22d9d30177d1eec93e (diff) | |
download | CMake-29c9f1bc2b2fc7886e4c19a197e6d4cd8c3292aa.zip CMake-29c9f1bc2b2fc7886e4c19a197e6d4cd8c3292aa.tar.gz CMake-29c9f1bc2b2fc7886e4c19a197e6d4cd8c3292aa.tar.bz2 |
BUG: fix bad set property code in cmake
-rw-r--r-- | Source/cmake.cxx | 2 |
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) |