| 118 | } |
| 119 | |
| 120 | void CMakeServerImportJob::doStart() |
| 121 | { |
| 122 | connect(m_server.data(), &CMakeServer::response, this, &CMakeServerImportJob::processResponse); |
| 123 | |
| 124 | m_server->handshake(m_project->path(), CMake::currentBuildDir(m_project)); |
| 125 | } |
| 126 | |
| 127 | void CMakeServerImportJob::processResponse(const QJsonObject& response) |
| 128 | { |
nothing calls this directly
no test coverage detected