diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2016-09-09 10:01:45 +0200 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-26 14:32:22 -0400 |
commit | 0a8ad6700eb7f54961271b3ee7b41add61eb0be5 (patch) | |
tree | 7568d19560b15c9d3daa7ea45b4f783132f734b8 /Source/cmServerProtocol.h | |
parent | 544f65f44de0bb63a0b427150eb5e2bc90f58396 (diff) | |
download | cmake-0a8ad6700eb7f54961271b3ee7b41add61eb0be5.tar.gz |
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/cmServerProtocol.h')
-rw-r--r-- | Source/cmServerProtocol.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmServerProtocol.h b/Source/cmServerProtocol.h index 21515b28eb..c0148a4504 100644 --- a/Source/cmServerProtocol.h +++ b/Source/cmServerProtocol.h @@ -118,13 +118,15 @@ private: std::string* errorMessage) override; // Handle requests: + cmServerResponse ProcessConfigure(const cmServerRequest& request); cmServerResponse ProcessGlobalSettings(const cmServerRequest& request); cmServerResponse ProcessSetGlobalSettings(const cmServerRequest& request); enum State { STATE_INACTIVE, - STATE_ACTIVE + STATE_ACTIVE, + STATE_CONFIGURED }; State m_State = STATE_INACTIVE; }; |