Files
CMake/Tests/RunCMake/Ninja/app_qt.cpp
Alexandru Croitor 7445c9a58a AutoGen: Add test to check for correct AutoMoc dependencies
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.
2020-08-03 19:38:16 +02:00

12 lines
126 B
C++

#include <QObject>
class Mango : public QObject
{
Q_OBJECT
public:
Q_SIGNALS:
void eatFruit();
};
#include "app_qt.moc"