c++ - linker error when compiling a project written with QT -


i have project written else. based on qt.

i downloaded qt , compiled vs 2012.

now compiling application vs2012 , getting linker error:

error   215 error lnk2038: mismatch detected '_msc_ver': value '1600' doesn't match value '1700' in aboutdialog.obj projectpath\qtmaind.lib 

what problem , how can fix it?

the linker complains version of microsoft compiler used compile 1 compilation unit (aboutdialog.obj) different of library (projectpath\qtmaind.lib).

msvc 1600 included in visual studio 2010, while msvc 1700 included in visual studio 2012.

it seems attempt compile vs2012 not quite exhaustive.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -