mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-06 23:29:31 -06:00
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
C++
15 lines
148 B
C++
#ifndef OBJECT_HPP
|
|
#define OBJECT_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class Object : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_SLOT
|
|
void aSlot(){};
|
|
};
|
|
|
|
#endif
|