summaryrefslogtreecommitdiff
path: root/Source/cmake.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-08-24 07:31:01 -0400
committerBrad King <brad.king@kitware.com>2018-08-29 09:38:32 -0400
commitbd7dd6d414303e8fc4da786107f4292768d87638 (patch)
tree50263834f698e97ad558bd4a02ce79570be41572 /Source/cmake.h
parentca7507cebc74fe4af3660cf85c72070c3f95a9ba (diff)
downloadcmake-bd7dd6d414303e8fc4da786107f4292768d87638.tar.gz
cmake: Declare VariableWatch member only when used
Diffstat (limited to 'Source/cmake.h')
-rw-r--r--Source/cmake.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index 86e06df459..4b4c67c77a 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -297,8 +297,10 @@ public:
///! this is called by generators to update the progress
void UpdateProgress(const char* msg, float prog);
+#if defined(CMAKE_BUILD_WITH_CMAKE)
///! Get the variable watch object
cmVariableWatch* GetVariableWatch() { return this->VariableWatch; }
+#endif
void GetGeneratorDocumentation(std::vector<cmDocumentationEntry>&);
@@ -493,8 +495,6 @@ protected:
void GenerateGraphViz(const char* fileName) const;
- cmVariableWatch* VariableWatch;
-
private:
ProgressCallbackType ProgressCallback;
void* ProgressCallbackClientData;
@@ -525,6 +525,10 @@ private:
std::string GraphVizFile;
InstalledFilesMap InstalledFiles;
+#if defined(CMAKE_BUILD_WITH_CMAKE)
+ cmVariableWatch* VariableWatch;
+#endif
+
cmState* State;
cmStateSnapshot CurrentSnapshot;
cmMessenger* Messenger;