aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/enum_group_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/enum_group_main.cpp')
-rw-r--r--autotests/kconfig_compiler/enum_group_main.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/autotests/kconfig_compiler/enum_group_main.cpp b/autotests/kconfig_compiler/enum_group_main.cpp
new file mode 100644
index 00000000..fc93d275
--- /dev/null
+++ b/autotests/kconfig_compiler/enum_group_main.cpp
@@ -0,0 +1,18 @@
+/*
+ SPDX-FileCopyrightText: 2009 Pino Toscano <pino@kde.org>
+
+ SPDX-License-Identifier: MIT
+*/
+#include "test_enums_and_properties.h"
+#include <QGuiApplication>
+
+int main(int argc, char **argv)
+{
+ QGuiApplication app(argc, argv);
+
+ auto *t = new TestEnumsAndProperties();
+ delete t;
+
+ Q_UNUSED(app);
+ return 0;
+}