summaryrefslogtreecommitdiff
path: root/Source/cmServerDictionary.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2016-09-09 10:01:46 +0200
committerTobias Hunger <tobias.hunger@qt.io>2016-09-29 21:47:05 +0200
commit262500028cb5e6c278cbc0f0a2694b50833dc3ec (patch)
tree4bf82f767fb7b1870714c041dc9e64ea68c30210 /Source/cmServerDictionary.h
parent0d96e1932937b866343ae8b52c20e0a8c058f3b2 (diff)
downloadcmake-262500028cb5e6c278cbc0f0a2694b50833dc3ec.tar.gz
server-mode: Report watched files to client
* Add a command to report watched files and directories to clients.
Diffstat (limited to 'Source/cmServerDictionary.h')
-rw-r--r--Source/cmServerDictionary.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmServerDictionary.h b/Source/cmServerDictionary.h
index c811b83af1..61cde75f6e 100644
--- a/Source/cmServerDictionary.h
+++ b/Source/cmServerDictionary.h
@@ -12,6 +12,7 @@ static const std::string kCODE_MODEL_TYPE = "codemodel";
static const std::string kCOMPUTE_TYPE = "compute";
static const std::string kCONFIGURE_TYPE = "configure";
static const std::string kERROR_TYPE = "error";
+static const std::string kFILESYSTEM_WATCHERS_TYPE = "fileSystemWatchers";
static const std::string kGLOBAL_SETTINGS_TYPE = "globalSettings";
static const std::string kHANDSHAKE_TYPE = "handshake";
static const std::string kMESSAGE_TYPE = "message";
@@ -80,6 +81,8 @@ static const std::string kVALUE_KEY = "value";
static const std::string kWARN_UNINITIALIZED_KEY = "warnUninitialized";
static const std::string kWARN_UNUSED_CLI_KEY = "warnUnusedCli";
static const std::string kWARN_UNUSED_KEY = "warnUnused";
+static const std::string kWATCHED_DIRECTORIES_KEY = "watchedDirectories";
+static const std::string kWATCHED_FILES_KEY = "watchedFiles";
static const std::string kSTART_MAGIC = "[== CMake Server ==[";
static const std::string kEND_MAGIC = "]== CMake Server ==]";