summaryrefslogtreecommitdiffstats
path: root/tests/manual/findfiles/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/findfiles/main.cpp')
-rw-r--r--tests/manual/findfiles/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/manual/findfiles/main.cpp b/tests/manual/findfiles/main.cpp
new file mode 100644
index 0000000000..8c25b7e031
--- /dev/null
+++ b/tests/manual/findfiles/main.cpp
@@ -0,0 +1,14 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QApplication>
+
+#include "window.h"
+
+int main(int argc, char *argv[])
+{
+ QApplication app(argc, argv);
+ Window window;
+ window.show();
+ return app.exec();
+}