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/cmServerDictionary.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/cmServerDictionary.h')
-rw-r--r-- | Source/cmServerDictionary.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmServerDictionary.h b/Source/cmServerDictionary.h index 61cde75..c82274a 100644 --- a/Source/cmServerDictionary.h +++ b/Source/cmServerDictionary.h @@ -6,6 +6,9 @@ // Vocabulary: +static const std::string kDIRTY_SIGNAL = "dirty"; +static const std::string kFILE_CHANGE_SIGNAL = "fileChange"; + static const std::string kCACHE_TYPE = "cache"; static const std::string kCMAKE_INPUTS_TYPE = "cmakeInputs"; static const std::string kCODE_MODEL_TYPE = "codemodel"; @@ -86,3 +89,6 @@ static const std::string kWATCHED_FILES_KEY = "watchedFiles"; static const std::string kSTART_MAGIC = "[== CMake Server ==["; static const std::string kEND_MAGIC = "]== CMake Server ==]"; + +static const std::string kRENAME_PROPERTY_VALUE = "rename"; +static const std::string kCHANGE_PROPERTY_VALUE = "change"; |