diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2016-09-09 08:01:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-26 18:32:22 (GMT) |
commit | 0a8ad6700eb7f54961271b3ee7b41add61eb0be5 (patch) | |
tree | 7568d19560b15c9d3daa7ea45b4f783132f734b8 /Source/cmServerDictionary.h | |
parent | 544f65f44de0bb63a0b427150eb5e2bc90f58396 (diff) | |
download | CMake-0a8ad6700eb7f54961271b3ee7b41add61eb0be5.zip CMake-0a8ad6700eb7f54961271b3ee7b41add61eb0be5.tar.gz CMake-0a8ad6700eb7f54961271b3ee7b41add61eb0be5.tar.bz2 |
server-mode: Add a configure command
Add a command to trigger cmake to configure a project.
Keep this separate from the compute step (added in the next commit)
to faciliate applications like cmake-gui.
Diffstat (limited to 'Source/cmServerDictionary.h')
-rw-r--r-- | Source/cmServerDictionary.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmServerDictionary.h b/Source/cmServerDictionary.h index 657fbd6..b78a1f4 100644 --- a/Source/cmServerDictionary.h +++ b/Source/cmServerDictionary.h @@ -16,6 +16,7 @@ // Vocabulary: +static const std::string kCONFIGURE_TYPE = "configure"; static const std::string kERROR_TYPE = "error"; static const std::string kGLOBAL_SETTINGS_TYPE = "globalSettings"; static const std::string kHANDSHAKE_TYPE = "handshake"; @@ -26,6 +27,7 @@ static const std::string kSET_GLOBAL_SETTINGS_TYPE = "setGlobalSettings"; static const std::string kSIGNAL_TYPE = "signal"; static const std::string kBUILD_DIRECTORY_KEY = "buildDirectory"; +static const std::string kCACHE_ARGUMENTS_KEY = "cacheArguments"; static const std::string kCAPABILITIES_KEY = "capabilities"; static const std::string kCHECK_SYSTEM_VARS_KEY = "checkSystemVars"; static const std::string kCOOKIE_KEY = "cookie"; |