summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/same_name/ccc
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2016-04-13 16:36:39 (GMT)
committerBrad King <brad.king@kitware.com>2016-04-22 12:55:44 (GMT)
commit84946c735cc6d2b8f8e014f4772dd602b4a83a16 (patch)
treef89d262df1f4346f89c1c538dd90669c4d9810be /Tests/QtAutogen/same_name/ccc
parent9c6fa684e7681417f5e75f25034f28212e22b229 (diff)
downloadCMake-84946c735cc6d2b8f8e014f4772dd602b4a83a16.zip
CMake-84946c735cc6d2b8f8e014f4772dd602b4a83a16.tar.gz
CMake-84946c735cc6d2b8f8e014f4772dd602b4a83a16.tar.bz2
Tests: QtAutogen: Same source name in different directories test
The test features multiple .cpp and .qrc files with the same name in different subdirectories. This requires AUTOMOC and AUTORCC to generate files with names that respect the path information of the source files.
Diffstat (limited to 'Tests/QtAutogen/same_name/ccc')
-rw-r--r--Tests/QtAutogen/same_name/ccc/data.qrc6
-rw-r--r--Tests/QtAutogen/same_name/ccc/item.cpp26
-rw-r--r--Tests/QtAutogen/same_name/ccc/item.hpp17
3 files changed, 49 insertions, 0 deletions
diff --git a/Tests/QtAutogen/same_name/ccc/data.qrc b/Tests/QtAutogen/same_name/ccc/data.qrc
new file mode 100644
index 0000000..f934c39
--- /dev/null
+++ b/Tests/QtAutogen/same_name/ccc/data.qrc
@@ -0,0 +1,6 @@
+<!DOCTYPE RCC><RCC version="1.0">
+<qresource prefix="ccc/">
+ <file>item.hpp</file>
+ <file>item.cpp</file>
+</qresource>
+</RCC>
diff --git a/Tests/QtAutogen/same_name/ccc/item.cpp b/Tests/QtAutogen/same_name/ccc/item.cpp
new file mode 100644
index 0000000..2584881
--- /dev/null
+++ b/Tests/QtAutogen/same_name/ccc/item.cpp
@@ -0,0 +1,26 @@
+#include "item.hpp"
+
+namespace ccc {
+
+void
+Item::go ( )
+{
+}
+
+class MocTest : public QObject
+{
+ Q_OBJECT;
+ Q_SLOT
+ void go ( );
+};
+
+void
+MocTest::go()
+{
+}
+
+}
+
+// Include own moc files
+#include "moc_item.cpp"
+#include "item.moc"
diff --git a/Tests/QtAutogen/same_name/ccc/item.hpp b/Tests/QtAutogen/same_name/ccc/item.hpp
new file mode 100644
index 0000000..6386dc6
--- /dev/null
+++ b/Tests/QtAutogen/same_name/ccc/item.hpp
@@ -0,0 +1,17 @@
+#ifndef SDC_ITEM_HPP
+#define SDC_ITEM_HPP
+
+#include <QObject>
+
+namespace ccc {
+
+class Item : public QObject
+{
+ Q_OBJECT
+ Q_SLOT
+ void go ( );
+};
+
+}
+
+#endif