aboutsummaryrefslogtreecommitdiffstats
path: root/qbs/imports
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2016-11-10 16:57:18 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2016-11-10 16:36:17 +0000
commit77ba40603ad85c6283fd03505ce805258f6c0a01 (patch)
tree0d293e889b294936eeaaff597374d0128f9219bb /qbs/imports
parent9040c4081ec764bd14bfef1aac9aa737b3f22422 (diff)
qbs build: Fix the names of some Qt modules in Depends items
It's "testlib", not "test". And "designercomponents" is actually a private module. Change-Id: I1a14d107bb5568b4f3807558ec6ed11937ac816a Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'qbs/imports')
-rw-r--r--qbs/imports/QtcAutotest.qbs2
-rw-r--r--qbs/imports/QtcLibrary.qbs2
-rw-r--r--qbs/imports/QtcPlugin.qbs2
3 files changed, 3 insertions, 3 deletions
diff --git a/qbs/imports/QtcAutotest.qbs b/qbs/imports/QtcAutotest.qbs
index 586626b22d..03670f2902 100644
--- a/qbs/imports/QtcAutotest.qbs
+++ b/qbs/imports/QtcAutotest.qbs
@@ -3,7 +3,7 @@ import qbs.FileInfo
QtcProduct {
type: ["application", "autotest"]
- Depends { name: "Qt.test" }
+ Depends { name: "Qt.testlib" }
Depends { name: "copyable_resource" }
targetName: "tst_" + name.split(' ').join("")
diff --git a/qbs/imports/QtcLibrary.qbs b/qbs/imports/QtcLibrary.qbs
index 5c54ba8894..af6eb04bad 100644
--- a/qbs/imports/QtcLibrary.qbs
+++ b/qbs/imports/QtcLibrary.qbs
@@ -8,7 +8,7 @@ QtcProduct {
useNonGuiPchFile: true
Depends {
condition: qtc.testsEnabled
- name: "Qt.test"
+ name: "Qt.testlib"
}
targetName: QtcFunctions.qtLibraryName(qbs, name)
diff --git a/qbs/imports/QtcPlugin.qbs b/qbs/imports/QtcPlugin.qbs
index 5f11e136ee..1a6406f176 100644
--- a/qbs/imports/QtcPlugin.qbs
+++ b/qbs/imports/QtcPlugin.qbs
@@ -22,7 +22,7 @@ QtcProduct {
Depends { name: "pluginjson" }
Depends {
condition: qtc.testsEnabled
- name: "Qt.test"
+ name: "Qt.testlib"
}
Properties {