Displaying 1 result from an estimated 1 matches for "lqtgui4".
Did you mean:
qtgui4
2005 Nov 22
0
Cross compiling with Qt and MinGW for Linux
...ITION=QT_EDITION_DESKTOP -DQT_DLL -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB
-DQT_THREAD_SUPPORT -pipe -O2 -w -I../../../mkspecs/linux-g++ -I. -I../../../include/QtGui
-I../../../include/QtCore -I../../../include -I../../../include/ActiveQt -I.
-L/home/joaquin/.wine/drive_c/Qt/4.0.1/lib -lQtCore4 -lQtGui4
And the content of program is:
#include <QApplication>
#include <QPushButton>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QPushButton hello("Hello world!");
hello.resize(100, 30);
hello.show();
return app.exec();
}
My questio...