diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2018-01-05 12:28:09 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2018-01-17 16:23:49 (GMT) |
commit | 6f4b661383fccc5f2f5a936499ba11cf2000b535 (patch) | |
tree | 129047e8c296ba8c7451fa958ecdfb14878651d0 /Tests/QtAutogen/Parallel/main.cpp | |
parent | a008578deebfa71b38786281450e3d9cf84f5847 (diff) | |
download | CMake-6f4b661383fccc5f2f5a936499ba11cf2000b535.zip CMake-6f4b661383fccc5f2f5a936499ba11cf2000b535.tar.gz CMake-6f4b661383fccc5f2f5a936499ba11cf2000b535.tar.bz2 |
Autogen: Tests: Add AUTOGEN_PARALLEL tests
Diffstat (limited to 'Tests/QtAutogen/Parallel/main.cpp')
-rw-r--r-- | Tests/QtAutogen/Parallel/main.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/QtAutogen/Parallel/main.cpp b/Tests/QtAutogen/Parallel/main.cpp new file mode 100644 index 0000000..a4ffcb3 --- /dev/null +++ b/Tests/QtAutogen/Parallel/main.cpp @@ -0,0 +1,16 @@ +#include "aaa/bbb/item.hpp" +#include "aaa/item.hpp" +#include "bbb/aaa/item.hpp" +#include "bbb/item.hpp" +#include "ccc/item.hpp" + +int main(int argv, char** args) +{ + // Object instances + ::aaa::Item aaa_item; + ::aaa::bbb::Item aaa_bbb_item; + ::bbb::Item bbb_item; + ::bbb::aaa::Item bbb_aaa_item; + ::ccc::Item ccc_item; + return 0; +} |