Visual Studio MFC project in Qt Creator
-
I am not aware of a way to do so. You can create a dummy .pro file using "qmake -project" and open that in Qt Creator and then reconfigure the build configuration to actually use msbuild for its work.
-
[quote author="SteveKing" date="1334241204"]You could load the project into Visual Studio, and then export it to a .pro file using the VS plugin. This is kind of a one way process and the .pro file it produces might need some hand crafting.[/quote]
It's not possible for any project except projects using Qt. I have MFC project (without Qt libraries), how can it be exported?
-
-
Thanks. But if I have about 100 projects and their files collected in many subdirs (which have sometimes subdirs too)?..
Yes. I can use
@
qmake -project -r
@
I also can write some script. Thanks, mlong, you gave me a good idea. The most problematic is to port options of solution and projects, but that's non Qt side :)