summaryrefslogtreecommitdiff
path: root/tests/plugins/pack/qtapp/src/main.cpp
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-28 12:05:12 +0800
committerGitHub <[email protected]>2025-11-28 12:05:12 +0800
commitec0c0d458a14c6a9aff1a01d5e1cf264c8dcfeb2 (patch)
tree648c6e438c1ee829c4f61f8f83c6fef20057ebbb /tests/plugins/pack/qtapp/src/main.cpp
parent4be95ee920757c2c813b84af5f07653c191c0215 (diff)
parent2766d4d1065f8daee0b7b5c95f9fd85b03144eb5 (diff)
Merge pull request #7071 from xmake-io/qt
Add Qt pack support
Diffstat (limited to 'tests/plugins/pack/qtapp/src/main.cpp')
-rw-r--r--tests/plugins/pack/qtapp/src/main.cpp10
1 files changed, 10 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..a1cfd8dea
--- /dev/null
+++ b/tests/plugins/pack/qtapp/src/main.cpp
@@ -0,0 +1,10 @@
+#include "mainwindow.h"
+#include <QApplication>
+
+int main(int argc, char *argv[]) {
+ QApplication a(argc, argv);
+ MainWindow w;
+ w.show();
+ return a.exec();
+}
+