mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
When using Qt 5.15.0 or above together with Ninja, check that touching a source file of a dependency does not needlessly re-run AUTOMOC for the dependee target.
12 lines
126 B
C++
12 lines
126 B
C++
#include <QObject>
|
|
|
|
class Mango : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_SIGNALS:
|
|
void eatFruit();
|
|
};
|
|
|
|
#include "app_qt.moc"
|