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.
17 lines
337 B
C++
17 lines
337 B
C++
#include "aaa/item.hpp"
|
|
#include "aaa/bbb/item.hpp"
|
|
#include "bbb/item.hpp"
|
|
#include "bbb/aaa/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;
|
|
}
|