我使用qtCreator开发了一个应用程序,我发现我需要在visual studio中导入项目。我试图运行visual studio插件(1.1.9),但它没有用。知道我有visual c ++ express edition 2010
有没有解决方法?
答案 0 :(得分:3)
QMake可以从.pro文件中生成vcproj。使用它们导入VS。
您要查找的选项是qmake -tp vc
。
请参阅:http://doc.qt.nokia.com/4.7/qmake-platform-notes.html
有关详细信息,请参阅此处:How to generate .sln/.vcproj using qmake 或者:How to create a vcproj with qmake such that its filters reflect the directory structure?
答案 1 :(得分:1)
我使用Qt Add-in解决了这个问题,详细的解决方案可以在 http://www.holoborodko.com/pavel/2011/02/01/how-to-compile-qt-4-7-with-visual-studio-2010/