summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2022-06-13 17:28:17 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2022-06-17 15:24:00 +0000
commitd4b8739653de90e9dbbe03b8d6a3a08be5f5e9ac (patch)
tree3047763ed97b02fb5e50a28e0b01002e429364c1 /tests
parentcdedc711825162c44e451deddbcecd47989acf14 (diff)
downloadqt-creator-d4b8739653de90e9dbbe03b8d6a3a08be5f5e9ac.tar.gz
qbs build: Fix building with MSVC and Qt >= 6.3
Change-Id: I59439217575bdcc170f38382129fa5f13edb23e2 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/debugger/gui/gui.qbs1
-rw-r--r--tests/manual/debugger/simple/simple_test_app.qbs1
-rw-r--r--tests/manual/debugger/simple/simple_test_plugin.qbs1
-rw-r--r--tests/manual/widgets/crumblepath/crumblepath.qbs1
-rw-r--r--tests/manual/widgets/infolabel/infolabel.qbs1
-rw-r--r--tests/manual/widgets/manhattanstyle/manhattanstyle.qbs1
-rw-r--r--tests/manual/widgets/tracing/tracing.qbs1
7 files changed, 7 insertions, 0 deletions
diff --git a/tests/manual/debugger/gui/gui.qbs b/tests/manual/debugger/gui/gui.qbs
index 7a464f77c1..88e9bd5307 100644
--- a/tests/manual/debugger/gui/gui.qbs
+++ b/tests/manual/debugger/gui/gui.qbs
@@ -1,5 +1,6 @@
QtApplication {
name: "Manual debugger gui test"
+ Depends { name: "qtc" }
Depends { name: "Qt.widgets" }
files: [
diff --git a/tests/manual/debugger/simple/simple_test_app.qbs b/tests/manual/debugger/simple/simple_test_app.qbs
index 59cf3fe307..ca2c56229e 100644
--- a/tests/manual/debugger/simple/simple_test_app.qbs
+++ b/tests/manual/debugger/simple/simple_test_app.qbs
@@ -5,6 +5,7 @@ CppApplication {
name: "Manual Test Simple Application"
targetName: "simple_test_app"
+ Depends { name: "qtc" }
Depends { name: "Qt.core" }
Depends { name: "Qt.core-private"; required: false; condition: Qt.core.versionMajor > 4 }
Depends { name: "Qt.core5compat"; condition: Qt.core.versionMajor > 5 }
diff --git a/tests/manual/debugger/simple/simple_test_plugin.qbs b/tests/manual/debugger/simple/simple_test_plugin.qbs
index 33f257c449..eca6791c02 100644
--- a/tests/manual/debugger/simple/simple_test_plugin.qbs
+++ b/tests/manual/debugger/simple/simple_test_plugin.qbs
@@ -4,6 +4,7 @@ DynamicLibrary {
name: "Manual Test Simple Plugin"
targetName: "simple_test_plugin"
+ Depends { name: "qtc" }
Depends { name: "Qt.core" }
files: [ "simple_test_plugin.cpp" ]
diff --git a/tests/manual/widgets/crumblepath/crumblepath.qbs b/tests/manual/widgets/crumblepath/crumblepath.qbs
index af1860a52e..c9b32a0810 100644
--- a/tests/manual/widgets/crumblepath/crumblepath.qbs
+++ b/tests/manual/widgets/crumblepath/crumblepath.qbs
@@ -3,6 +3,7 @@ import "../common/common.qbs" as Common
CppApplication {
name: "Manual Test Utils CrumblePath"
+ Depends { name: "qtc" }
Depends { name: "Core" }
Depends { name: "Utils" }
diff --git a/tests/manual/widgets/infolabel/infolabel.qbs b/tests/manual/widgets/infolabel/infolabel.qbs
index ce00065c7c..dfba3bd9ef 100644
--- a/tests/manual/widgets/infolabel/infolabel.qbs
+++ b/tests/manual/widgets/infolabel/infolabel.qbs
@@ -3,6 +3,7 @@ import "../common/common.qbs" as Common
CppApplication {
name: "Manual Test Utils InfoLabel"
+ Depends { name: "qtc" }
Depends { name: "Core" }
Depends { name: "Utils" }
diff --git a/tests/manual/widgets/manhattanstyle/manhattanstyle.qbs b/tests/manual/widgets/manhattanstyle/manhattanstyle.qbs
index 97a728a6f6..c04bd03e89 100644
--- a/tests/manual/widgets/manhattanstyle/manhattanstyle.qbs
+++ b/tests/manual/widgets/manhattanstyle/manhattanstyle.qbs
@@ -3,6 +3,7 @@ import "../common/common.qbs" as Common
CppApplication {
name: "Manual Test Utils ManhattanStyle"
+ Depends { name: "qtc" }
Depends { name: "Core" }
Depends { name: "Utils" }
diff --git a/tests/manual/widgets/tracing/tracing.qbs b/tests/manual/widgets/tracing/tracing.qbs
index 06bbc4edd4..95e661910c 100644
--- a/tests/manual/widgets/tracing/tracing.qbs
+++ b/tests/manual/widgets/tracing/tracing.qbs
@@ -3,6 +3,7 @@ import "../common/common.qbs" as Common
CppApplication {
name: "Manual Test Tracing"
+ Depends { name: "qtc" }
Depends { name: "Qt.quick" }
Depends { name: "Tracing" }
Depends { name: "Utils" }