Qt creator not working/compiling
-
i have installed Qt online installer in my windows 10 system. now i got qt creator,Qt designer,Qt assistant,Qt linguistic installed of Qt 5.5 and 5.4 versions in my system in c:/Qt.
now i am trying to open example in qt assistant then i am getting following error . please help20:13:28: Configuration is faulty. Check the Issues view for details.
Error while building/deploying project analogclock (kit: Desktop Qt 5.5.1 MSVC2012 32bit)
When executing step "Make" -
Since you're using (kit: Desktop Qt 5.5.1 MSVC2012 32bit) do you have Visual Studio 2012 installed too?
-
Qt Creator is only an IDE. You can access it all you want but you need a compiler to compile a program and you installed Qt version that uses Visual Studio 2012 compiler.
Your options now are:- Install Visual Studio 2012 (not any other version!)
- Go to your Qt installation directory and run MaintenanceTool.exe. Select add/remove components and on the list that comes up select (deselect everything! else):
Qt -> Qt 5.5 ->MinGW 4.9.2 32bit
,Qt->Tools->MinGW 4.9.2
. This will install Qt Creator, Qt library compiled with MinGW compiler and the MinGW compiler itself. You won't need Visual Studio if you choose this option.
-
Again - Qt Creator is just an IDE. Basically a text editor, like Notepad. Just with more options.
You need a compiler to compile code. There are two major compilers on Windows that you can choose from: MSVC or MinGW.
MSVC is shipped as part of Visual Studio and you need to install Visual Studio separately to get it.
MinGW can be installed from Qt's online installer if you select the options I mentioned in my previous post. -
i hAve just installed microsoft visual c++ 2012, will this help to any instant.
i have run the maintaince tool in Qt directory in my C:/Qt folder, then i got add or remove then i checked and clicked next. now it is showing a preparing meta information downloading with progress bar like that from long time. any suggestions . can you help me through team viewer . about this issue.
-
I said you have a choice. Don't do both!
If you installed VS2012 then you've got all you need for option 1.
You don't need the maintenance tool. That is only if you choose MinGW over Visual Studio.