mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 01:49:23 -05:00
56aa6ffae7
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
27 lines
308 B
C++
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"
|