diff options
author | Brad King <brad.king@kitware.com> | 2016-08-15 12:59:46 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-08-15 12:59:46 (GMT) |
commit | 33d4aff50d50907d05b49c92ed01376264d84389 (patch) | |
tree | 2e69f1fdcf0907c816f60c3c1f352facbf0a8340 /Tests/QtAutogen/sameName/ccc/item.cpp | |
parent | d47abe40b6532095fa28f5f1305e2ecad5feb6b7 (diff) | |
parent | 61a607e8d43e0d02ff80cca6e60441f56a6741b5 (diff) | |
download | CMake-33d4aff50d50907d05b49c92ed01376264d84389.zip CMake-33d4aff50d50907d05b49c92ed01376264d84389.tar.gz CMake-33d4aff50d50907d05b49c92ed01376264d84389.tar.bz2 |
Merge topic 'autogen-same-name'
61a607e8 Help: Document AUTORCC behavior for same .qrc name case
e4f508e4 Tests/QtAutogen: Test same moc/qrc source names in different directories
4e9b97d7 QtAutogen: Allow multiple qrc files with the same name
41c9e14a QtAutogen: Allow multiple moc files with the same name
3c3b37b0 QtAutogen: Use std:: instead of ::std::
0a5dd3c7 cmFilePathUuid: Add class to generate deterministic unique file names
Diffstat (limited to 'Tests/QtAutogen/sameName/ccc/item.cpp')
-rw-r--r-- | Tests/QtAutogen/sameName/ccc/item.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Tests/QtAutogen/sameName/ccc/item.cpp b/Tests/QtAutogen/sameName/ccc/item.cpp new file mode 100644 index 0000000..d90b2b8 --- /dev/null +++ b/Tests/QtAutogen/sameName/ccc/item.cpp @@ -0,0 +1,23 @@ +#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 "item.moc" +#include "moc_item.cpp" |