aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Qt/tests/test.cpp')
-rw-r--r--src/Qt/tests/test.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Qt/tests/test.cpp b/src/Qt/tests/test.cpp
new file mode 100644
index 0000000..c8329b1
--- /dev/null
+++ b/src/Qt/tests/test.cpp
@@ -0,0 +1,10 @@
+#include <QApplication>
+#include <QDebug>
+
+int main(int argc, char *argv[])
+{
+ QApplication app(argc,argv);
+
+
+ return app.exec();
+}