summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/cursors/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/wasm/cursors/main.cpp')
-rw-r--r--tests/manual/wasm/cursors/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/manual/wasm/cursors/main.cpp b/tests/manual/wasm/cursors/main.cpp
new file mode 100644
index 0000000000..9a59cdd994
--- /dev/null
+++ b/tests/manual/wasm/cursors/main.cpp
@@ -0,0 +1,13 @@
+// Copyright (C) 2019 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+#include "MainWindow.h"
+
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ MainWindow w;
+ w.showFullScreen();
+ return a.exec();
+}