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

QbsProjectManager: Link qbsqtprofilesetup in the "external qbs" case.


We forgot to add this library there when we introduced it.

Change-Id: Id7a0693235a133cd4c96bd0e582e984efa6bdab2
Reviewed-by: default avatarJake Petroules <jake.petroules@petroules.com>
parent a0ca5f64
No related branches found
Tags v3.1.2
No related merge requests found
......@@ -14,15 +14,13 @@ QtcPlugin {
var libs = []
if (!project.useExternalQbs)
return libs;
var suffix = "";
if (qbs.targetOS.contains("windows")) {
libs.push("shell32")
if (qbs.enableDebugCode)
libs.push("qbscored")
else
libs.push("qbscore")
} else {
libs.push("qbscore")
suffix = "d";
}
libs.push("qbscore" + suffix, "qbsqtprofilesetup" + suffix);
return libs
}
......
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