I ddi not succedded to compile code using qt code.
I got this message
Linking console executable: bin\Debug\Test2.exe
c:/codeblocks/mingw/bin/../lib/gcc/mingw32/4.4.1/../../../../mingw32/bin/ld.exe: c:\QtSDK\Desktop\Qt\4.7.4\msvc2008\lib: No such file: Permission denied
collect2: ld returned 1 exit status
Process terminated with status 1 (0 minutes, 0 seconds)
0 errors, 0 warnings
I installed qt sdk and I set include / path in Code Block IDE.
I installed QtWorkbench and qthelper pluging also.
Can you help me to solve this situation ?
Please tell me your configuration at "Compiler and debbuger settings".
I have one single file and the code is
#include <QApplication>
#include <QFont>
#include <QPushButton>
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
QPushButton quit("Quit");
quit.resize(75, 30);
quit.setFont(QFont("Times", 18, QFont::Bold));
QObject::connect(&quit, SIGNAL(clicked()), &app, SLOT(quit()));
quit.show();
return app.exec();
}
I spent days and I search on google but I can not compile a simple code.