mirror of
https://github.com/reactos/CMake.git
synced 2024-11-29 06:20:23 +00:00
1320e0768e
Test this by generating files with a custom target, which moc requires to be present when it is run.
15 lines
165 B
C
15 lines
165 B
C
|
|
#ifndef MYINTERFACE_H
|
|
#define MYINTERFACE_H
|
|
|
|
#include <QObject>
|
|
|
|
class MyInterface
|
|
{
|
|
|
|
};
|
|
|
|
Q_DECLARE_INTERFACE(MyInterface, "org.cmake.example.MyInterface")
|
|
|
|
#endif
|