forked from qt-creator/qt-creator
		
	qbs build: Use project-global destination dir for libs and plugins
The autotests' rpath settings expect them there. Change-Id: I13e3b8fb9a65be16e980b8465ff2e89b9e01ec6b Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
		@@ -13,7 +13,7 @@ QtcProduct {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    targetName: QtcFunctions.qtLibraryName(qbs, name)
 | 
			
		||||
    destinationDirectory: FileInfo.joinPaths(buildDirectory, qtc.ide_library_path)
 | 
			
		||||
    destinationDirectory: FileInfo.joinPaths(project.buildDirectory, qtc.ide_library_path)
 | 
			
		||||
 | 
			
		||||
    cpp.linkerFlags: {
 | 
			
		||||
        var flags = base;
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@ QtcProduct {
 | 
			
		||||
    property var pluginTestDepends: []
 | 
			
		||||
 | 
			
		||||
    targetName: QtcFunctions.qtLibraryName(qbs, name)
 | 
			
		||||
    destinationDirectory: FileInfo.joinPaths(buildDirectory, qtc.ide_plugin_path)
 | 
			
		||||
    destinationDirectory: FileInfo.joinPaths(project.buildDirectory, qtc.ide_plugin_path)
 | 
			
		||||
 | 
			
		||||
    Depends { name: "ExtensionSystem" }
 | 
			
		||||
    Depends { name: "pluginjson" }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user