aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/minimumSystemVersion/minimumSystemVersion.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/minimumSystemVersion/minimumSystemVersion.qbs')
-rw-r--r--tests/manual/minimumSystemVersion/minimumSystemVersion.qbs15
1 files changed, 5 insertions, 10 deletions
diff --git a/tests/manual/minimumSystemVersion/minimumSystemVersion.qbs b/tests/manual/minimumSystemVersion/minimumSystemVersion.qbs
index 51272a8d7..fbb592cc9 100644
--- a/tests/manual/minimumSystemVersion/minimumSystemVersion.qbs
+++ b/tests/manual/minimumSystemVersion/minimumSystemVersion.qbs
@@ -2,9 +2,8 @@ import qbs 1.0
Project {
// no minimum versions are specified so the profile defaults will be used
- CppApplication {
+ QtApplication {
type: "application"
- Depends { name: "Qt.core" }
name: "unspecified"
files: "main.cpp"
@@ -16,9 +15,8 @@ Project {
// no minimum versions are specified, and explicitly set to undefined in
// case the profile has set it
- CppApplication {
+ QtApplication {
type: "application"
- Depends { name: "Qt.core" }
name: "unspecified-forced"
files: "main.cpp"
cpp.minimumWindowsVersion: undefined
@@ -35,9 +33,8 @@ Project {
// a specific version of the operating systems is specified
// when the application is run its output should confirm
// that the given values took effect
- CppApplication {
+ QtApplication {
type: "application"
- Depends { name: "Qt.core" }
condition: qbs.targetOS.contains("windows") || qbs.targetOS.contains("osx")
name: "specific"
files: "main.cpp"
@@ -57,9 +54,8 @@ Project {
// non-existent versions of Windows should print a QBS warning
// (but will still compile and link since we avoid passing a
// bad value to the linker)
- CppApplication {
+ QtApplication {
type: "application"
- Depends { name: "Qt.core" }
condition: qbs.targetOS.contains("windows")
name: "fakewindows"
files: "main.cpp"
@@ -69,9 +65,8 @@ Project {
// just to make sure three-digit minimum versions work on OS X
// this only affects the value of __MAC_OS_X_VERSION_MIN_REQUIRED,
// not the actual LC_VERSION_MIN_MACOSX command which is limited to two
- CppApplication {
+ QtApplication {
type: "application"
- Depends { name: "Qt.core" }
condition: qbs.targetOS.contains("osx")
name: "macappstore"
files: "main.cpp"