Hello,
i try to create a console application under Windows.
The problem is that it does not create/update the moc_* files whenver a slot
have been added.
If i manually execute qmake and mingw32_make then i get the files
created/updated.
Environment is WinXP (SP3) + QtCreator 2009.01 (Opensource edition)
(The 2009.02 edition is unusable here because of the GUI delays/hangs)
The code looks like (stripped down):
main.c
int main (.....)
{
QConsoleApplicaton a;
MyObject obj;
return a.exec ();
}
myobject.h:
#include <QObject>
class MyObject : public QObject
{
Q_OBJECT
public:
MyObject (QObject * = 0);
public slots:
void method ();
...
};
Any hints ?
regards
Petric
_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-creator