I have a ray tracer that uses QImage to save the rendered image to a file. It does not use any other Qt classes. I can do this without using Visual Studio (I did this in linux), but now I would like to be edit the program using VS (I have VS2010).
What's the easiest way to do this? I assume that if I just do:
#include <QImage>
....
QImage image.....
it's not going to work. How do I tell VS to use Qt in the project as well?
I've looked at this but the gives an error in my VS... If anyone has an updated guide for VS2010 and add-in 1.1.8, that would be great!
Edit: Since I wasn't clear enough, I already have Qt and the plug-in for VS. I need some guidance as to how to edit the .vsproj file so that Qt classes are linked in the project after the creation of a normal C++ project.