Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | server: remove deprecated 'cmake -E server' mode | Brad King | 2020-10-14 | 1 | -1/+0 |
| | | | | | | The server mode has been deprecated since commit 996e1885c4 (server: deprecate in favor of the file-api, 2019-04-19, v3.15.0-rc1~198^2). Clients should now be using the file-api. Remove the server mode. | ||||
* | cmake-server: Bare-bones server implementation | Tobias Hunger | 2016-09-19 | 1 | -0/+1 |
Adds a bare-bones cmake-server implementation and makes it possible to start that with "cmake -E server". Communication happens via stdin/stdout for now. Protocol is based on Json objects surrounded by magic strings ("[== CMake Server ==[" and "]== CMake Server ==]"), which simplifies Json parsing significantly. This patch also defines an interface used to implement different versions of the protocol spoken by the server, but does not include any protocol implementaiton. |