How to convert QtCreator project to Visual Studio project

前端 未结 3 1901
醉话见心
醉话见心 2021-02-01 17:32

I have a QtCreator project file *.pro

How to convert it to Visual Studio 2008 project *.sln?

3条回答
  •  孤城傲影
    2021-02-01 17:43

    Qt Creator / qmake can generate .vcproj files directly.

    See this link

    Put "TEMPLATE=vcapp" or "TEMPLATE=vclib" (as appropriate) in your .pro file and run qmake. That will generate a .vcproj file.

    Edit: The link no longer worke, but I found an archive of it here

提交回复
热议问题