mirror of
https://github.com/reactos/CMake.git
synced 2024-11-29 06:20:23 +00:00
9c87d9cc3e
This replaces the need to invoke qt4_add_resources by allowing adding the source .qrc file directly to the target sources.
18 lines
225 B
C++
18 lines
225 B
C++
|
|
#ifndef RESOURCE_TESTER_H
|
|
#define RESOURCE_TESTER_H
|
|
|
|
#include <QObject>
|
|
|
|
class ResourceTester : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ResourceTester(QObject *parent = 0);
|
|
|
|
private slots:
|
|
void doTest();
|
|
};
|
|
|
|
#endif
|