diff options
author | Brad King <brad.king@kitware.com> | 2009-03-13 14:53:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-03-13 14:53:47 (GMT) |
commit | 5e49dc4346c276ada7bea1376266e8fb2956b78c (patch) | |
tree | 6732a1dbe3c8042ccd6a08a82e1e4804056b27a6 /Source/cmake.cxx | |
parent | c6d0043e2a256d1785cb4b9f6497e578f7eaed19 (diff) | |
download | CMake-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.cxx | 2 |
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; |