qbs files updated

Property bindings in ProductModules now need explicit Depends items.
Also, some Qt dependencies were propagated wrongly and are now
added explicitely.

Change-Id: I58cd389eb0ab106004b1d575438d1ad2ff36189f
Reviewed-by: Marco Bubke <marco.bubke@nokia.com>
This commit is contained in:
Joerg Bornemann
2012-04-18 17:02:20 +02:00
parent d6d8e2639e
commit 0834958063
14 changed files with 21 additions and 4 deletions

View File

@@ -543,6 +543,7 @@ QtcLibrary {
}
ProductModule {
Depends { name: "cpp" }
cpp.linkerFlags: {
if (qbs.toolchain === 'mingw') {
return ['--enable-auto-import']

View File

@@ -177,6 +177,7 @@ QtcLibrary {
]
ProductModule {
Depends { name: "cpp" }
cpp.includePaths: [
".",
"../3rdparty",

View File

@@ -28,6 +28,7 @@ QtcLibrary {
]
ProductModule {
Depends { name: "cpp" }
cpp.includePaths: ["."]
}
}

View File

@@ -60,6 +60,7 @@ QtcLibrary {
]
ProductModule {
Depends { name: "cpp" }
cpp.includePaths: ["."]
}
}

View File

@@ -103,6 +103,7 @@ QtcLibrary {
]
ProductModule {
Depends { name: "cpp" }
cpp.includePaths: [
".",
"parser"

View File

@@ -41,6 +41,7 @@ QtcLibrary {
]
ProductModule {
Depends { name: "cpp" }
Depends { name: "symbianutils" }
cpp.includePaths: [
"."

View File

@@ -55,6 +55,7 @@ QtcLibrary {
]
ProductModule {
Depends { name: "cpp" }
cpp.includePaths: [
"../../shared/symbianutils",
"../../shared/json",

View File

@@ -242,5 +242,9 @@ QtcLibrary {
"unixutils.cpp"
]
}
ProductModule {
Depends { name: "Qt"; submodules: ["widgets", "network"] }
}
}

View File

@@ -34,5 +34,8 @@ QtcLibrary {
"syssocket.h"
]
ProductModule { cpp.includePaths: "." }
ProductModule {
Depends { name: "cpp" }
cpp.includePaths: "."
}
}

View File

@@ -54,6 +54,7 @@ QtcPlugin {
]
ProductModule {
Depends { name: "cpp" }
cpp.includePaths: [
"."
]

View File

@@ -241,13 +241,14 @@ QtcPlugin {
}
ProductModule {
Depends { name: "cpp" }
Depends { name: "Aggregation" }
Depends { name: "ExtensionSystem" }
Depends { name: "Utils" }
cpp.includePaths: [
"../..",
"../../libs",
buildDirectory + "/.obj/Core/actionmanager"
product.buildDirectory + "/.obj/Core/actionmanager"
]
}
}

View File

@@ -305,6 +305,7 @@ QtcPlugin {
}
ProductModule {
Depends { name: "cpp" }
cpp.includePaths: ["."]
}
}

View File

@@ -5,7 +5,7 @@ import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "QmlJSEditor"
Depends { name: "qt"; submodules: ['gui'] }
Depends { name: "qt"; submodules: ['widgets', 'script'] }
Depends { name: "Core" }
Depends { name: "TextEditor" }
Depends { name: "ProjectExplorer" }

View File

@@ -5,7 +5,7 @@ import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "QmlJSInspector"
Depends { name: "qt"; submodules: ['gui'] }
Depends { name: "qt"; submodules: ['widgets', 'quick1'] }
Depends { name: "Core" }
Depends { name: "ProjectExplorer" }
Depends { name: "QmlProjectManager" }