CMake/Tests/QtAutogen/myinterface.h.in
Stephen Kelly 1320e0768e cmQtAutogen: Allow specifying depends for autogen targets.
Test this by generating files with a custom target, which moc
requires to be present when it is run.
2013-11-25 22:41:21 +01:00

15 lines
165 B
C

#ifndef MYINTERFACE_H
#define MYINTERFACE_H
#include <QObject>
class MyInterface
{
};
Q_DECLARE_INTERFACE(MyInterface, "org.cmake.example.MyInterface")
#endif