diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-12-08 18:27:10 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-12-13 12:48:28 (GMT) |
commit | 7971202b3c58f78008f5b651c048910fcc49c49f (patch) | |
tree | 489a6b1b9afba6959c04c59edebd8d28b9a7e4e3 /Tests/QtAutogen/MocDepends/testGenLib.cpp | |
parent | fb7e52ca3d920ca1de8b2abb23da3d83db988eca (diff) | |
download | CMake-7971202b3c58f78008f5b651c048910fcc49c49f.zip CMake-7971202b3c58f78008f5b651c048910fcc49c49f.tar.gz CMake-7971202b3c58f78008f5b651c048910fcc49c49f.tar.bz2 |
Autogen: Tests: Separate MocDepends test
Diffstat (limited to 'Tests/QtAutogen/MocDepends/testGenLib.cpp')
-rw-r--r-- | Tests/QtAutogen/MocDepends/testGenLib.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/QtAutogen/MocDepends/testGenLib.cpp b/Tests/QtAutogen/MocDepends/testGenLib.cpp new file mode 100644 index 0000000..c14e159 --- /dev/null +++ b/Tests/QtAutogen/MocDepends/testGenLib.cpp @@ -0,0 +1,12 @@ + +#include "testGenLib.hpp" + +int main() +{ + SimpleLib libObject; + LObject lobject; + return 0; +} + +// Depend on and AUTOMOC the SimpleLib header simpleLib.hpp +#include "moc_simpleLib.cpp" |