Skip to content
Snippets Groups Projects
Commit b2fe7c9a authored by Tobias Hunger's avatar Tobias Hunger
Browse files

CMake: Use canonical source directory when talking to cmake server-mode


Use the canonical form of the source directory when talking to cmake.

Cmake will save the canonical source directory in its settings and will
fail if that is not passed in again.

Change-Id: I1ea578053c8d5136d09b3f503443bd0188ebca4f
Reviewed-by: default avatarhjk <hjk@qt.io>
Reviewed-by: default avatarTim Jenssen <tim.jenssen@qt.io>
parent b913e9d5
No related branches found
No related tags found
No related merge requests found
......@@ -464,7 +464,7 @@ void ServerMode::handleHello(const QVariantMap &data)
if (m_minorProtocol >= 0)
version.insert("minor", m_minorProtocol);
extra.insert("protocolVersion", version);
extra.insert("sourceDirectory", m_sourceDirectory.toString());
extra.insert("sourceDirectory", m_sourceDirectory.toFileInfo().canonicalFilePath());
extra.insert("buildDirectory", m_buildDirectory.toString());
extra.insert("generator", m_generator);
if (!m_platform.isEmpty())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment