mirror of
https://github.com/reactos/CMake.git
synced 2025-02-01 01:22:58 +00:00
112cba927a
Visual Studio is handled as a special case for autogen depends. However, the special handling works only for target dependencies, not file dependencies output by a custom command. Use a PRE_BUILD step only if all depends are targets.
19 lines
302 B
C++
19 lines
302 B
C++
|
|
#ifndef GENERATED_H
|
|
#define GENERATED_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "myinterface.h"
|
|
#include "myotherinterface.h"
|
|
|
|
class Generated : public QObject, MyInterface, MyOtherInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(MyInterface MyOtherInterface)
|
|
public:
|
|
explicit Generated(QObject *parent = 0);
|
|
};
|
|
|
|
#endif
|