summaryrefslogtreecommitdiff
path: root/Source/cmServerProtocol.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2016-09-09 10:01:45 +0200
committerBrad King <brad.king@kitware.com>2016-09-26 14:33:12 -0400
commit890432672bc9fe91365e5e5305285ab193e9060a (patch)
tree8df978e8e6a678ccd53940915d699decbd94da74 /Source/cmServerProtocol.h
parent0a8ad6700eb7f54961271b3ee7b41add61eb0be5 (diff)
downloadcmake-890432672bc9fe91365e5e5305285ab193e9060a.tar.gz
server-mode: Add command to compute the build system
Diffstat (limited to 'Source/cmServerProtocol.h')
-rw-r--r--Source/cmServerProtocol.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmServerProtocol.h b/Source/cmServerProtocol.h
index c0148a4504..e772eca431 100644
--- a/Source/cmServerProtocol.h
+++ b/Source/cmServerProtocol.h
@@ -118,6 +118,7 @@ private:
std::string* errorMessage) override;
// Handle requests:
+ cmServerResponse ProcessCompute(const cmServerRequest& request);
cmServerResponse ProcessConfigure(const cmServerRequest& request);
cmServerResponse ProcessGlobalSettings(const cmServerRequest& request);
cmServerResponse ProcessSetGlobalSettings(const cmServerRequest& request);
@@ -126,7 +127,8 @@ private:
{
STATE_INACTIVE,
STATE_ACTIVE,
- STATE_CONFIGURED
+ STATE_CONFIGURED,
+ STATE_COMPUTED
};
State m_State = STATE_INACTIVE;
};