How to import a Visual C ++ project into Qt Creator?

I have been working with the commercial version of Qt on Windows for some time, so I have a large collection of Visual Studio projects (vcproj files).
I would like to start transferring these projects to Qt Creator - I, of course, moved some of them โ€œmanuallyโ€ and can do this work, but it seems that there should be (maybe?) Import of Visual Studio script or application or features of some kind either kind.

Does anyone know about this, or about a specific set of procedures for moving a project from one to another?

+6
qt visual-studio qt-creator
source share
2 answers

You can export the pro file (or perhaps the pri file, I donโ€™t remember) from the Qt menu in VS.

+5
source share

Perhaps you can create a Makefile that calls devenv to create your project / solution from the command line and use the "Import from Makefile Based Project" from the new menu.

0
source share

All Articles