What axeljaeger wrote is recommended, because it will be much easier for you.
And if you don't want to use the SDK you can do this:
- Write a valid .pro file for your project
- Run qmake -t vcapp in the directory where the .pro file is
- This generates a YourProject.vcproj that can be opened in Visual Studio 200x
- Building (debug or static), IntelliSense, debugging and everything else will work
If you want to add more files to the project it would be good to add them in the .pro file and rerun qmake -t vcapp. VS will automatically ask to reload the project.
Also consider installing the Qt Visual Studion AddIn (http://qt.nokia.com/downloads/visual-studio-add-in).
Bookmarks