summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/IncompatibleQt/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/IncompatibleQt/main.cpp')
-rw-r--r--Tests/RunCMake/IncompatibleQt/main.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/RunCMake/IncompatibleQt/main.cpp b/Tests/RunCMake/IncompatibleQt/main.cpp
new file mode 100644
index 000000000..140a7c1a6
--- /dev/null
+++ b/Tests/RunCMake/IncompatibleQt/main.cpp
@@ -0,0 +1,8 @@
+
+#include <QCoreApplication>
+
+int main(int argc, char **argv)
+{
+ QCoreApplication app(argc, argv);
+ return app.exec();
+}