summaryrefslogtreecommitdiffstats
path: root/tests/manual/qglyphruns/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qglyphruns/main.cpp')
-rw-r--r--tests/manual/qglyphruns/main.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/manual/qglyphruns/main.cpp b/tests/manual/qglyphruns/main.cpp
new file mode 100644
index 0000000000..6f76b66d14
--- /dev/null
+++ b/tests/manual/qglyphruns/main.cpp
@@ -0,0 +1,18 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#include "controller.h"
+
+#include <QtWidgets>
+
+int main(int argc, char **argv)
+{
+ QApplication app(argc, argv);
+
+ Controller controller;
+ controller.showMaximized();
+
+ return app.exec();
+}
+
+#include "main.moc"