summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-03-13 14:53:47 (GMT)
committerBrad King <brad.king@kitware.com>2009-03-13 14:53:47 (GMT)
commit5e49dc4346c276ada7bea1376266e8fb2956b78c (patch)
tree6732a1dbe3c8042ccd6a08a82e1e4804056b27a6 /Source/cmake.cxx
parentc6d0043e2a256d1785cb4b9f6497e578f7eaed19 (diff)
downloadCMake-5e49dc4346c276ada7bea1376266e8fb2956b78c.zip
CMake-5e49dc4346c276ada7bea1376266e8fb2956b78c.tar.gz
CMake-5e49dc4346c276ada7bea1376266e8fb2956b78c.tar.bz2
BUG: Fix cache properties for CMAKE_STRICT build
All cmPropertyMap instances must have CMakeInstance set. This teaches cmCacheManager to set it on cache entries.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 825fe63..5cabc22 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -176,7 +176,7 @@ cmake::cmake()
this->Verbose = false;
this->InTryCompile = false;
- this->CacheManager = new cmCacheManager;
+ this->CacheManager = new cmCacheManager(this);
this->GlobalGenerator = 0;
this->ProgressCallback = 0;
this->ProgressCallbackClientData = 0;