diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 15:42:02 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-10 15:42:02 +0200 |
commit | 79a309d786abefef1a4f354c2973a14cba882850 (patch) | |
tree | 7723fe40d3db22671c755293e419c31202871893 /Source/cmake.cxx | |
parent | e2eecae20517daa2bb292f85e161d5cebbc1f216 (diff) | |
download | cmake-79a309d786abefef1a4f354c2973a14cba882850.tar.gz |
cmState: Port away from cmake instance.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index b1c2709192..6846f1b52b 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -10,7 +10,6 @@ See the License for more information. ============================================================================*/ #include "cmake.h" -#include "cmCacheManager.h" #include "cmMakefile.h" #include "cmLocalGenerator.h" #include "cmExternalMakefileProjectGenerator.h" @@ -135,7 +134,7 @@ cmake::cmake() this->ClearBuildSystem = false; this->FileComparison = new cmFileTimeComparison; - this->State = new cmState(this); + this->State = new cmState; this->CurrentSnapshot = this->State->CreateBaseSnapshot(); #ifdef __APPLE__ @@ -151,7 +150,6 @@ cmake::cmake() #endif this->Verbose = false; - this->CacheManager = new cmCacheManager; this->GlobalGenerator = 0; this->ProgressCallback = 0; this->ProgressCallbackClientData = 0; @@ -171,7 +169,6 @@ cmake::cmake() cmake::~cmake() { - delete this->CacheManager; delete this->State; if (this->GlobalGenerator) { |