You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
354 B
26 lines
354 B
#include "test1.h"
|
|
#include "plainobject.h"
|
|
|
|
extern int qInitResources_res1();
|
|
|
|
class Test2 : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public slots:
|
|
void onTst1() {}
|
|
};
|
|
|
|
int main()
|
|
{
|
|
// Fails to link if the rcc generated symbol is not present.
|
|
qInitResources_res1();
|
|
|
|
Test1 test1;
|
|
Test2 test2;
|
|
PlainObject plainObject;
|
|
|
|
return 0;
|
|
}
|
|
|
|
#include "main.moc"
|