summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/clipboard/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/wasm/clipboard/main.cpp')
-rw-r--r--tests/manual/wasm/clipboard/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/manual/wasm/clipboard/main.cpp b/tests/manual/wasm/clipboard/main.cpp
new file mode 100644
index 0000000000..aa838f6670
--- /dev/null
+++ b/tests/manual/wasm/clipboard/main.cpp
@@ -0,0 +1,14 @@
+// Copyright (C) 2021 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.show();
+ return a.exec();
+}