summaryrefslogtreecommitdiff
path: root/tests/projects/qt_console/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/qt_console/src/main.cpp')
-rw-r--r--tests/projects/qt_console/src/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/qt_console/src/main.cpp b/tests/projects/qt_console/src/main.cpp
new file mode 100644
index 000000000..de25444ff
--- /dev/null
+++ b/tests/projects/qt_console/src/main.cpp
@@ -0,0 +1,9 @@
+#include <QCoreApplication>
+
+int main(int argc, char *argv[])
+{
+ QCoreApplication a(argc, argv);
+
+ printf("hello xmake\n");
+ return a.exec();
+}