hi all
Error my make!
am new to QT
my code
#include <qapplication.h>
#include <qlabel.h>
int main (int argc, char*argv[])
{
QApplication app(argc, argv);
QLabel * label = new QLabel ("Hello QT!", 0);
app.setMainWidget (label);
label->show();
return app.exec();
}
all Error
root@nin-aesa:~/qt# make
g++ -o qt hello.o -L/usr/X11R6/lib -lXext -lX11 -lm -lpthread
hello.o: In function `main':
/home/soliveira/qt/hello.cpp:6: undefined reference to `QApplication::QApplication(int&, char**)'
/home/soliveira/qt/hello.cpp:7: undefined reference to `QString::QString(char const*)'
/home/soliveira/qt/hello.cpp:7: undefined reference to `QLabel::QLabel(QString const&, QWidget*, char const*, unsigned int)'
hello.o: In function `~QString':
/usr/include/qt3/qstring.h:850: undefined reference to `QString::shared_null'
/usr/include/qt3/qstring.h:851: undefined reference to `QStringData::deleteSelf()'
hello.o: In function `main':
/home/soliveira/qt/hello.cpp:8: undefined reference to `QApplication::setMainWidget(QWidget*)'
/home/soliveira/qt/hello.cpp:10: undefined reference to `QApplication::exec()'
/home/soliveira/qt/hello.cpp:10: undefined reference to `QApplication::~QApplication()'
hello.o: In function `~QString':
/usr/include/qt3/qstring.h:850: undefined reference to `QString::shared_null'
/usr/include/qt3/qstring.h:851: undefined reference to `QStringData::deleteSelf()'
hello.o: In function `main':
/home/soliveira/qt/hello.cpp:10: undefined reference to `QApplication::~QApplication()'
hello.o:(.rodata._ZTV6QGList[vtable for QGList]+0xc): undefined reference to `QGList::clear()'
hello.o:(.rodata._ZTV6QGList[vtable for QGList]+0x10): undefined reference to `QGList::~QGList()'
hello.o:(.rodata._ZTV6QGList[vtable for QGList]+0x14): undefined reference to `QGList::~QGList()'
hello.o:(.rodata._ZTV6QGList[vtable for QGList]+0x18): undefined reference to `QPtrCollection::newItem(void*)'
hello.o:(.rodata._ZTV6QGList[vtable for QGList]+0x20): undefined reference to `QGList::compareItems(void*, void*)'
hello.o:(.rodata._ZTV6QGList[vtable for QGList]+0x24): undefined reference to `QGList::read(QDataStream&, void*&)'
hello.o:(.rodata._ZTV6QGList[vtable for QGList]+0x28): undefined reference to `QGList::write(QDataStream&, void*) const'
hello.o:(.rodata._ZTI6QGList[typeinfo for QGList]+0x8): undefined reference to `typeinfo for QPtrCollection'
collect2: ld returned 1 exit status
make: ** [qt] Erro 1
Tank all!!
Bookmarks