forked from qt-creator/qt-creator
qbs: fix build on windows
Change-Id: I851abd4e19c5da16bcca6efeead7fe38e5b75c6e Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
committed by
Christian Kandeler
parent
e420d8b692
commit
943cb2b378
@@ -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;
|
||||
|
Reference in New Issue
Block a user