Author Topic: Code::Blocks && Qt  (Read 8102 times)

Ockonal

  • Guest
Code::Blocks && Qt
« on: August 04, 2008, 09:11:35 am »
Hello! I installed yesterday IDE Code::Blocks. It's very nice and functionality!
I'm work with Qt, and it's very good, that Code::Blocks  is work with Qt too :)
But i can't find autocompleter of code. Are there any plugins, which do it?
p.s. sorry, that my english so bad ^_^

Offline aliosa_sbbv

  • Single posting newcomer
  • *
  • Posts: 2
Re: Code::Blocks && Qt
« Reply #1 on: May 25, 2012, 01:45:52 pm »
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.

Offline Freem

  • Almost regular
  • **
  • Posts: 218
Re: Code::Blocks && Qt
« Reply #2 on: May 25, 2012, 03:34:39 pm »
I do not think he will reply after 4 years.

But if you provide full log, maybe someone will be able.