QT Creator - configuration of IDE
-
Hello
I wanted to start the journey of developer QT. But QT creator did not want to cooporate with me.
This is my setup:img
QT ( default installation, but i also downloaded the latest mingw available ( 4.9.2 32 BIT). On this computer i have also installed Visual Studio 2015.
Those are my tools ( all of them are using Microsoft Visual Studio Compiler ( 11 and 12 , but there is available also 14). I gave them also debbuger from mingw from default installation.
PROBLEM:
When i want to compile my first "project" it says that :
:-1: error: LNK1104: cannot open file 'shell32.lib' .
I hope that i gave all of the nesesary information. -
Hi and welcome
sounds a bit like this
http://stackoverflow.com/questions/28105824/qt-fails-to-open-shell32-lib-even-when-included -
now it can not read the dependency
http://pastebin.com/yfqFXBYu <- pro file
http://pastebin.com/eADrJ0NV <--- error log -
@Toreto In your PRO file you have to put the paths containing blanks in "", else you get errors like: 'E:\Onedrive\Programowanie\QT\progress\C:\Program' does not exist.
And you do something completely wrong: -L$$PWD/C:/Program\ Files\ (x86)/Microsoft SDKs/Windows/v7.1A/Lib/
You append C:/Program... to the current directory ($$PWD) this is just wrong.Check this in your PRO file: win32:CONFIG(release, debug|release): LIBS += -L$$PWD/C:/Program\ Files\ (x86)/Microsoft SDKs/Windows/v7.1A/Lib/ -lshell32
-
I can not get how to get it to work;/ The question is why default config do not work? It should be ready to work just after install...