mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 08:08:24 -05:00
336893d9eb
The tests for AUTOGEN_TARGET_DEPENDS were part of the AutogenOriginDependsOn tests suite. This separates them into an own AutogenTargetDepends tests suite.
15 lines
148 B
Plaintext
15 lines
148 B
Plaintext
#ifndef OBJECT_HPP
|
|
#define OBJECT_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class Object : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_SLOT
|
|
void aSlot(){};
|
|
};
|
|
|
|
#endif
|