Reputation: 385
I have been working with the commercial version of Qt on Windows for some time, so have a large collection of Visual Studio projects (vcproj files).
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?
Upvotes: 6
Views: 11757
Reputation: 9814
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.
Upvotes: 0
Reputation: 1826
You can export to a pro file (or maybe a pri file, can't remember) from the Qt menu in VS.
Upvotes: 5