如何在Visual C++中导入QT项目2010年?
我使用 qtCreator 开发了一个应用程序,我发现我需要在 Visual Studio 中导入该项目。我尝试运行 Visual Studio 插件(1.1.9),但它不起作用。知道我有 Visual C++ Express Edition 2010
有任何解决方法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
QMake 可以从 .pro 文件生成 vcproj。使用它们导入到 VS 中。
您正在寻找的选项是
qmake -tp vc
。请参阅:http://doc.qt.nokia.com/4.7/ qmake-platform-notes.html
有关详细信息,请参阅此处:如何使用 qmake 生成 .sln/.vcproj
或者: 如何使用 qmake 创建 vcproj,使其过滤器反映目录结构?
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?
我使用 Qt Add-in 解决了这个问题,详细的解决方案可以在以下位置找到
http://www.holoborodko.com/pavel/2011/02/01/how-to-compile-qt-4-7-with-visual-studio-2010/
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/