2

I developed an application using qtCreator and I figured out that I need to import the project in visual studio. I tried to run the visual studio add-in (1.1.9) but it didn't work. Knowing that I have visual c++ express edition 2010

Are there any workarounds?

4

2 に答える 2

3

QMake can generate vcproj out of .pro files. Use those to import into VS.

The option you are looking for is qmake -tp vc.

See: http://doc.qt.nokia.com/4.7/qmake-platform-notes.html

For more info see here: How to generate .sln/.vcproj using qmake Or: How to create a vcproj with qmake such that its filters reflect the directory structure?

于 2011-08-12T10:05:01.227 に答える
1

I solved the problem using Qt Add-in a detailed solution can be found at http://www.holoborodko.com/pavel/2011/02/01/how-to-compile-qt-4-7-with-visual-studio-2010/

于 2011-08-18T16:23:06.070 に答える