diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-09-03 19:12:14 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-09-21 07:58:23 (GMT) |
commit | 4eb7d81791d38042e13ced8c01cb4e3a3452c704 (patch) | |
tree | d8be53fe0b950d932d85310542d1f03e96621131 /Tests | |
parent | 3f2237433991764479362c3f530201a0305a64d6 (diff) | |
download | CMake-4eb7d81791d38042e13ced8c01cb4e3a3452c704.zip CMake-4eb7d81791d38042e13ced8c01cb4e3a3452c704.tar.gz CMake-4eb7d81791d38042e13ced8c01cb4e3a3452c704.tar.bz2 |
Autogen: Tests: Add <SUBDIR>/item.moc includes to sameName test
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/QtAutogen/sameName/aaa/bbb/item.cpp | 12 | ||||
-rw-r--r-- | Tests/QtAutogen/sameName/aaa/item.cpp | 12 | ||||
-rw-r--r-- | Tests/QtAutogen/sameName/bbb/aaa/item.cpp | 12 | ||||
-rw-r--r-- | Tests/QtAutogen/sameName/bbb/item.cpp | 12 | ||||
-rw-r--r-- | Tests/QtAutogen/sameName/ccc/item.cpp | 17 | ||||
-rw-r--r-- | Tests/QtAutogen/sameName/item.cpp | 12 |
6 files changed, 68 insertions, 9 deletions
diff --git a/Tests/QtAutogen/sameName/aaa/bbb/item.cpp b/Tests/QtAutogen/sameName/aaa/bbb/item.cpp index 20d0044..850206f 100644 --- a/Tests/QtAutogen/sameName/aaa/bbb/item.cpp +++ b/Tests/QtAutogen/sameName/aaa/bbb/item.cpp @@ -3,8 +3,20 @@ namespace aaa { namespace bbb { +class MocLocal : public QObject +{ + Q_OBJECT; + +public: + MocLocal() = default; + ~MocLocal() = default; +}; + void Item::go() { + MocLocal obj; } } } + +#include "aaa/bbb/item.moc" diff --git a/Tests/QtAutogen/sameName/aaa/item.cpp b/Tests/QtAutogen/sameName/aaa/item.cpp index 95dd3b6..85312e9 100644 --- a/Tests/QtAutogen/sameName/aaa/item.cpp +++ b/Tests/QtAutogen/sameName/aaa/item.cpp @@ -2,7 +2,19 @@ namespace aaa { +class MocLocal : public QObject +{ + Q_OBJECT; + +public: + MocLocal() = default; + ~MocLocal() = default; +}; + void Item::go() { + MocLocal obj; } } + +#include "aaa/item.moc" diff --git a/Tests/QtAutogen/sameName/bbb/aaa/item.cpp b/Tests/QtAutogen/sameName/bbb/aaa/item.cpp index ac4b2c2..7ad01c3 100644 --- a/Tests/QtAutogen/sameName/bbb/aaa/item.cpp +++ b/Tests/QtAutogen/sameName/bbb/aaa/item.cpp @@ -3,8 +3,20 @@ namespace bbb { namespace aaa { +class MocLocal : public QObject +{ + Q_OBJECT; + +public: + MocLocal() = default; + ~MocLocal() = default; +}; + void Item::go() { + MocLocal obj; } } } + +#include "bbb/aaa/item.moc" diff --git a/Tests/QtAutogen/sameName/bbb/item.cpp b/Tests/QtAutogen/sameName/bbb/item.cpp index f97a143..b851bb6 100644 --- a/Tests/QtAutogen/sameName/bbb/item.cpp +++ b/Tests/QtAutogen/sameName/bbb/item.cpp @@ -2,7 +2,19 @@ namespace bbb { +class MocLocal : public QObject +{ + Q_OBJECT; + +public: + MocLocal() = default; + ~MocLocal() = default; +}; + void Item::go() { + MocLocal obj; } } + +#include "bbb/item.moc" diff --git a/Tests/QtAutogen/sameName/ccc/item.cpp b/Tests/QtAutogen/sameName/ccc/item.cpp index d90b2b8..e27a784 100644 --- a/Tests/QtAutogen/sameName/ccc/item.cpp +++ b/Tests/QtAutogen/sameName/ccc/item.cpp @@ -2,22 +2,21 @@ namespace ccc { -void Item::go() -{ -} - -class MocTest : public QObject +class MocLocal : public QObject { Q_OBJECT; - Q_SLOT - void go(); + +public: + MocLocal() = default; + ~MocLocal() = default; }; -void MocTest::go() +void Item::go() { + MocLocal obj; } } // Include own moc files -#include "item.moc" +#include "ccc/item.moc" #include "moc_item.cpp" diff --git a/Tests/QtAutogen/sameName/item.cpp b/Tests/QtAutogen/sameName/item.cpp index e013cf3..c614a84 100644 --- a/Tests/QtAutogen/sameName/item.cpp +++ b/Tests/QtAutogen/sameName/item.cpp @@ -1,5 +1,17 @@ #include "item.hpp" +class MocLocal : public QObject +{ + Q_OBJECT; + +public: + MocLocal() = default; + ~MocLocal() = default; +}; + void Item::go() { + MocLocal obj; } + +#include "item.moc" |