summaryrefslogtreecommitdiff
path: root/tests/plugins/pack/qtapp/src/main.cpp
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-27 23:38:25 +0800
committerruki <[email protected]>2025-11-27 23:38:25 +0800
commit96e1ffb8e2991322c58e2c7ff5864367d9bea529 (patch)
tree6c411b6b2cff4d713481ad7a626830f11201a87d /tests/plugins/pack/qtapp/src/main.cpp
parent4be95ee920757c2c813b84af5f07653c191c0215 (diff)
add qtapp
Diffstat (limited to 'tests/plugins/pack/qtapp/src/main.cpp')
-rw-r--r--tests/plugins/pack/qtapp/src/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/plugins/pack/qtapp/src/main.cpp b/tests/plugins/pack/qtapp/src/main.cpp
new file mode 100644
index 000000000..aee3b0862
--- /dev/null
+++ b/tests/plugins/pack/qtapp/src/main.cpp
@@ -0,0 +1,11 @@
+#include "mainwindow.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ MainWindow w;
+ w.show();
+ return a.exec();
+}
+