tags:

views:

935

answers:

2

I have been working with the commercial version of QT on Windows for some time, so have a large collection of Visual Studio projects. I would like to begin moving these projects into QT Creator--I have certainly moved some of them "by hand", and can make that work--but it seems like there ought to be (might be?) a Visual Studio import script or app or capability of some kind. Does anybody know of such a thing, or of a definable set of procedures to move a project from one to the other?

+2  A: 

You can export to a pro file (or maybe a pri file, can't remember) from the Qt menu in VS.

20th Century Boy
this did it, thanks very much.
jhowland
A: 

You could perhaps make a Makefile which calls devenv to build your project/solution from the command-line and the use "Import from a Makefile-based project" from the new menu.

Mike McQuaid