Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename the QtAutomoc tests to QtAutogen. | Stephen Kelly | 2013-10-24 | 1 | -86/+0 |
| | |||||
* | Make the QtAutomoc test compile with either Qt 4 or Qt 5 | Stephen Kelly | 2013-03-16 | 1 | -1/+1 |
| | |||||
* | Ensure that the build interface includes have been added. | Stephen Kelly | 2013-02-08 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | This is needed in the case that Automoc is used, as that calls GetIncludeDirectories, which may cache the resulting include dirs too early in the generate step. Also, because the automoc step is so early, we can't cache the include directories at that point. At that point the build interface of all dependencies are not populated yet, so we'd be caching the includes before appending the build interface. Only start caching when we're definitely generating the buildsystem. At that point, the includes should be stable. We still need to invoke AppendBuildInterfaceIncludes in the GlobalGenerator because the build interface includes affect mostly the dependencies of targets (such as the automoc targets), rather than the targets themselves, so the build interface needs to be appended for all targets before generation is done. | ||||
* | automoc: add special handling for including basename_p.moc, with test | Alex Neundorf | 2011-11-22 | 1 | -0/+4 |
| | | | | Alex | ||||
* | automoc: add test for including the moc file from another header | Alex Neundorf | 2011-11-22 | 1 | -0/+4 |
| | | | | | | | including moc_xyz.cpp in abc.cpp should run moc on xyz.h (and include the file in abc.cpp) Alex | ||||
* | automoc: add a test for including both abc.moc and moc_abc.cpp | Alex Neundorf | 2011-11-22 | 1 | -0/+4 |
| | | | | Alex | ||||
* | automoc: add more test cases | Alex Neundorf | 2011-11-10 | 1 | -0/+8 |
| | | | | Alex | ||||
* | automoc:run moc on the header if the source file contains include "foo.moc" | Alex Neundorf | 2011-10-22 | 1 | -0/+4 |
| | | | | | | | | | | This fixes #12533. Before automoc did not check the header if the source file contained a statement, now it does. Additionally, moc is now only run on explicitely listed headers which contain a Q_OBJECT macro. Alex | ||||
* | Add a test for automoc | Alex Neundorf | 2011-08-16 | 1 | -0/+58 |
The files are taken from the Qt examples. They are BSD licensed, so it should be fine. I only edited main.cpp to use both widgets. Alex |