Files
CMake/Tests/QtAutomoc/foo.cpp
T
Alex Neundorf 56aa6ffae7 automoc:run moc on the header if the source file contains include "foo.moc"
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
2011-10-22 19:38:39 +02:00

27 lines
308 B
C++

#include "foo.h"
#include <stdio.h>
class FooFoo : public QObject
{
Q_OBJECT
public:
FooFoo():QObject() {}
public slots:
int getValue() const { return 12; }
};
Foo::Foo()
:QObject()
{
}
void Foo::doFoo()
{
FooFoo ff;
printf("Hello automoc: %d\n", ff.getValue());
}
#include "foo.moc"