Skip to content

Commit

Permalink
qbs: fix build on windows
Browse files Browse the repository at this point in the history
Change-Id: I851abd4e19c5da16bcca6efeead7fe38e5b75c6e
Reviewed-by: Christian Kandeler <[email protected]>
  • Loading branch information
Tim Jenssen authored and Christian Kandeler committed Jun 22, 2016
1 parent e420d8b commit 943cb2b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions qtcreator.qbs
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,8 @@ Project {
}
var fullQtcInstallDir
= FileInfo.joinPaths(qbs.installRoot, qbs.installPrefix, qbs.InstallDir);
var fullLibInstallDir = FileInfo.joinPaths(fullQtcInstallDir,
product.moduleProperty("ide", "ide_library_path"));
var fullPluginInstallDir = FileInfo.joinPaths(fullQtcInstallDir,
product.moduleProperty("qtc", "ide_plugin_path"));
var fullLibInstallDir = FileInfo.joinPaths(fullQtcInstallDir, qtc.ide_library_path);
var fullPluginInstallDir = FileInfo.joinPaths(fullQtcInstallDir, qtc.ide_plugin_path);
path = Qt.core.binPath + ";" + fullLibInstallDir + ";" + fullPluginInstallDir
+ ";" + path;
var arrayElem = "PATH=" + path;
Expand Down

0 comments on commit 943cb2b

Please sign in to comment.