diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2016-09-09 08:01:46 (GMT) |
---|---|---|
committer | Tobias Hunger <tobias.hunger@qt.io> | 2016-09-29 20:34:10 (GMT) |
commit | 4e34f042504f1c62f36a0f16e137e137a7bf1e72 (patch) | |
tree | 6a9079a16e93dd82dce7d04c36d4bb8805546f25 /Source/cmServerProtocol.h | |
parent | 262500028cb5e6c278cbc0f0a2694b50833dc3ec (diff) | |
download | CMake-4e34f042504f1c62f36a0f16e137e137a7bf1e72.zip CMake-4e34f042504f1c62f36a0f16e137e137a7bf1e72.tar.gz CMake-4e34f042504f1c62f36a0f16e137e137a7bf1e72.tar.bz2 |
server-mode: Watch CMakeLists.txt files
Watch CMakeLists.txt files (and similar) from the Server
Diffstat (limited to 'Source/cmServerProtocol.h')
-rw-r--r-- | Source/cmServerProtocol.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmServerProtocol.h b/Source/cmServerProtocol.h index c516d68..5238d5d 100644 --- a/Source/cmServerProtocol.h +++ b/Source/cmServerProtocol.h @@ -109,6 +109,8 @@ private: bool DoActivate(const cmServerRequest& request, std::string* errorMessage) override; + void HandleCMakeFileChanges(const std::string& path, int event, int status); + // Handle requests: cmServerResponse ProcessCache(const cmServerRequest& request); cmServerResponse ProcessCMakeInputs(const cmServerRequest& request); @@ -127,4 +129,6 @@ private: STATE_COMPUTED }; State m_State = STATE_INACTIVE; + + bool m_isDirty = false; }; |