Reputation: 105
I have installed Qt sdk 4,7 , qt libs for Visual studio , and the addin for VS. And I want to open a qt project ( psi - im ) that was created with QT compiler (qt creator) and is a " .pro" file. because I've installed the qt addin for VS , I have menu ->QT-> open ".pro" file. But when I try it just loads for some time and then disappears, and nothing is opened.
have you ever encountered this?? Any suggestions?
VS ver = 2008
Upvotes: 1
Views: 1478
Reputation: 3468
to convert a qt project to visual studio project, execute this command in your console:
qmake -tp vc -r xxxxxx.pro
Upvotes: 1