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
Post a Comment