Dante
Dante

Reputation: 15

How do i use the Qt libraries 4.7.1 for Windows (VS 2008) on VS 2010?

i've downloaded the Qt libraries 4.7.1 for Windows (VS 2008) and i would like to use it in visual studio 2010, any ideas on how to do so?

thanks in advance

Dante

Upvotes: 1

Views: 579

Answers (2)

wkl
wkl

Reputation: 80031

You will need to use Qt libraries compiled with VC++ 2010. The VS2008-compiled versions link to a different version of the MS Visual C++ Runtime.

Unfortunately, that most likely means downloading the source and building libraries yourself.

Upvotes: 1

Timo Geusch
Timo Geusch

Reputation: 24351

You will have to recompile them from source or download binaries that have been built with VS2010 as the implementation of some parts of the VS2010 C++ standard library has changed.

Upvotes: 1

Related Questions