summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/ManySources/object.h.in
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-04-12 11:01:09 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-04-15 14:07:14 (GMT)
commit58f04b6ecf853e4ee5cce2bfb258fa7d4cc75b79 (patch)
treea077c43e29f0e419e52c47c756b4bb1b9e4be3ec /Tests/QtAutogen/ManySources/object.h.in
parenta3f062091f488237c0151f3f4753e0668f37c60d (diff)
downloadCMake-58f04b6ecf853e4ee5cce2bfb258fa7d4cc75b79.zip
CMake-58f04b6ecf853e4ee5cce2bfb258fa7d4cc75b79.tar.gz
CMake-58f04b6ecf853e4ee5cce2bfb258fa7d4cc75b79.tar.bz2
Autogen: Add ManySources test
The QtAutogen/ManySources test generates a number of source, header, .ui and .qrc files that get AUTOMOC, AUTOUIC and AUTORCC processed. This stresses the concurrency framework in `cmQtAutoMocUic` and should reveal any issues with that.
Diffstat (limited to 'Tests/QtAutogen/ManySources/object.h.in')
-rw-r--r--Tests/QtAutogen/ManySources/object.h.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/Tests/QtAutogen/ManySources/object.h.in b/Tests/QtAutogen/ManySources/object.h.in
new file mode 100644
index 0000000..a747cbc
--- /dev/null
+++ b/Tests/QtAutogen/ManySources/object.h.in
@@ -0,0 +1,15 @@
+#ifndef OBJECT_@III@H
+#define OBJECT_@III@H
+
+#include <QObject>
+
+class Object_@III@ : public QObject
+{
+ Q_OBJECT
+
+public:
+ Q_SLOT
+ void ObjectSlot(){};
+};
+
+#endif