Hiiii people... i'm new in this thing, but whean i read the overview about Qt.. i think i should try this one..so..this is my first thread.
i've installed Qt opensource 4.3.1 (include MinGW 3.4.2), which i downloaded binary version, so it should be no problem..
But when I followed example on 'http://doc.trolltech.com/4.1/tutorial-t1.html':
#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();
}
it succssed with 'qmake -projecth' and it was resulting file *.pro
then i run 'qmake' it was resulting Makefile file
but when i was running 'make', theres nothing happened (doesn't creating a new file) but theres a message:
'MAKE Version 5.2 Copyright (c) 1987, 1998 Inprise Corp.
Fatal: 'FORCE' does not exist - don't know how to make it'
I really don't know which file to execute/run like wrote in the example/tutorial...
I've been setting up the environment variable too.. the path, qtdir, and qtspec and for now i only use Notepad++ as editor.
What should I do to solve this problem? thank's anyway..
-rei-






Reply With Quote


Bookmarks