diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:42:02 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:42:02 (GMT) |
commit | 79a309d786abefef1a4f354c2973a14cba882850 (patch) | |
tree | 7723fe40d3db22671c755293e419c31202871893 /Source/cmState.h | |
parent | e2eecae20517daa2bb292f85e161d5cebbc1f216 (diff) | |
download | CMake-79a309d786abefef1a4f354c2973a14cba882850.zip CMake-79a309d786abefef1a4f354c2973a14cba882850.tar.gz CMake-79a309d786abefef1a4f354c2973a14cba882850.tar.bz2 |
cmState: Port away from cmake instance.
Diffstat (limited to 'Source/cmState.h')
-rw-r--r-- | Source/cmState.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmState.h b/Source/cmState.h index fbc9275..2f66f7f 100644 --- a/Source/cmState.h +++ b/Source/cmState.h @@ -23,6 +23,7 @@ class cmake; class cmCommand; class cmDefinitions; class cmListFileBacktrace; +class cmCacheManager; class cmState { @@ -32,7 +33,7 @@ class cmState typedef cmLinkedTree<SnapshotDataType>::iterator PositionType; friend class Snapshot; public: - cmState(cmake* cm); + cmState(); ~cmState(); enum SnapshotType @@ -320,7 +321,7 @@ private: std::vector<std::string> EnabledLanguages; std::map<std::string, cmCommand*> Commands; cmPropertyMap GlobalProperties; - cmake* CMakeInstance; + cmCacheManager* CacheManager; cmLinkedTree<BuildsystemDirectoryStateType> BuildsystemDirectory; |