aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/qmlls-cmake-builds/Main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qmlls-cmake-builds/Main.qml')
-rw-r--r--tests/manual/qmlls-cmake-builds/Main.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/manual/qmlls-cmake-builds/Main.qml b/tests/manual/qmlls-cmake-builds/Main.qml
new file mode 100644
index 0000000000..bd0c21ae63
--- /dev/null
+++ b/tests/manual/qmlls-cmake-builds/Main.qml
@@ -0,0 +1,14 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+import autoGenCMake
+
+Window {
+ width: 640
+ height: 480
+ visible: true
+ title: qsTr("Hello World")
+
+ HelloWorld { myP: 55; myPPP: 55 }
+}