From 943cb2b3781d70bcd4dc7044cd983d8077021b51 Mon Sep 17 00:00:00 2001 From: Tim Jenssen Date: Tue, 21 Jun 2016 14:21:17 +0200 Subject: [PATCH] qbs: fix build on windows Change-Id: I851abd4e19c5da16bcca6efeead7fe38e5b75c6e Reviewed-by: Christian Kandeler --- qtcreator.qbs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/qtcreator.qbs b/qtcreator.qbs index c6cfdb9e40f..487f6d47230 100644 --- a/qtcreator.qbs +++ b/qtcreator.qbs @@ -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;