Skip to content
Snippets Groups Projects
Commit 02b825c6 authored by Christian Kandeler's avatar Christian Kandeler
Browse files

qtcreatorcdbext: Fix qbs build for the "no python" case


Change-Id: Ic62b1052ffa693c0a040de1a2efd2dc06b49ac7f
Reviewed-by: default avatarChristian Stenger <christian.stenger@qt.io>
parent 42d19bf3
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,10 @@ QtcLibrary {
]
}
cpp.defines: ["WITH_PYTHON=1"]
Properties {
condition: pythonDllProbe.found
cpp.defines: ["WITH_PYTHON=1"]
}
cpp.includePaths: {
var paths = [FileInfo.joinPaths(cdbPath, "inc")];
if (pythonDllProbe.found)
......
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