QT codeblocks installation
-
wrote on 16 Nov 2021, 02:26 last edited by
hi everyone!
I would like to get some help, I want to install QT in my computer by using codelocks but I don't know how to do it . I want to use QT with codeblocks because my computer does not run properly QTCreator (which I have installed and deleted ) And I want to get the source of QT to compile and use with codeblocks 17.12 with mingw. I want to use QT 'cause I have learned PyQt to make interfaces and I love the way to do that, but now ,I am learning OpenGL and C++ and I want to work and learn with QT.
thanks from now! -
hi everyone!
I would like to get some help, I want to install QT in my computer by using codelocks but I don't know how to do it . I want to use QT with codeblocks because my computer does not run properly QTCreator (which I have installed and deleted ) And I want to get the source of QT to compile and use with codeblocks 17.12 with mingw. I want to use QT 'cause I have learned PyQt to make interfaces and I love the way to do that, but now ,I am learning OpenGL and C++ and I want to work and learn with QT.
thanks from now!@MontillaAnd said in QT codeblocks installation:
And I want to get the source of QT
Why do you need Qt source code?
Install Qt fof MinGW and MinGW using Qt Online Installer.
Then take a look at https://forums.codeblocks.org/index.php/topic,23059.msg156889.html#msg156889 -
wrote on 18 Nov 2021, 23:51 last edited by
Thanks, I've Installed it properly but now I have a problem.
the program compiles successfully but when I run it the program throws errors for dll files, I've copied the dll files to system32 folder and still throws dll erros so I've copied the dll files into my project folder and the dll error desappears but now the following error appears:
the application cannot run properly (0xc0000007b).
I made some researching on the internet to solve this error by updating some windows libraries and doing the tutorial steps but the error still appears.
do you know how to solve this issue? -
Thanks, I've Installed it properly but now I have a problem.
the program compiles successfully but when I run it the program throws errors for dll files, I've copied the dll files to system32 folder and still throws dll erros so I've copied the dll files into my project folder and the dll error desappears but now the following error appears:
the application cannot run properly (0xc0000007b).
I made some researching on the internet to solve this error by updating some windows libraries and doing the tutorial steps but the error still appears.
do you know how to solve this issue?@MontillaAnd said in QT codeblocks installation:
I've copied the dll files to system32
Please don't do this! This is very bad practise!
If you want to deploy your app read and follow this: https://doc.qt.io/qt-5/windows-deployment.html
Using windows deployment tool you can create a package containing your app and all needed dependencies.
1/4