I followed the instruction:
.pro
file with Editor INCLUDEPATH +=
section Append ` \` at the end of library path
Build > Run qmake
Check if the desired files really exist under D:/OpenGL/glew-1.5.4/include
. I.e. is there a folder named GL and inside it a file named glew.h?
Then try to remove the $$PWD/
part from the paths.
If this doesn't help replace the generated lines with just those two lines:
LIBS += -L$$quote(D:/OpenGL/glew-1.5.4/lib/) -lglew32
INCLUDEPATH += $$quote(D:/OpenGL/glew-1.5.4/include)
INCLUDEPATH += D:/OpenGL/glew-1.5.4/include
LIBS += -Lc:D:/OpenGL/glew-1.5.4/lib -lname
Just add the above line in the .pro file.Then check it.
I had the same problem and I figured it out just now: You have to run qmake(build->run qmake) to validate changes in the pro file.