aboutsummaryrefslogtreecommitdiffstats
path: root/qtcreator.qbs
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@theqtcompany.com>2016-06-21 14:21:17 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2016-06-22 07:50:47 +0000
commit943cb2b3781d70bcd4dc7044cd983d8077021b51 (patch)
tree895cda727332b4cb0bcb673948e4e3d670565a92 /qtcreator.qbs
parente420d8b6926385894a471f84cd10dc9b88af3d9e (diff)
qbs: fix build on windows
Change-Id: I851abd4e19c5da16bcca6efeead7fe38e5b75c6e Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'qtcreator.qbs')
-rw-r--r--qtcreator.qbs6
1 files changed, 2 insertions, 4 deletions
diff --git a/qtcreator.qbs b/qtcreator.qbs
index c6cfdb9e40..487f6d4723 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;