summaryrefslogtreecommitdiffstats
path: root/tests/manual/sensor_explorer_widgets/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/sensor_explorer_widgets/main.cpp')
-rw-r--r--tests/manual/sensor_explorer_widgets/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/manual/sensor_explorer_widgets/main.cpp b/tests/manual/sensor_explorer_widgets/main.cpp
new file mode 100644
index 00000000..005ec17d
--- /dev/null
+++ b/tests/manual/sensor_explorer_widgets/main.cpp
@@ -0,0 +1,13 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include "explorer.h"
+
+int main(int argc, char **argv)
+{
+ QApplication app(argc, argv);
+ Explorer explorer;
+ explorer.show();
+ return app.exec();
+}
+