I\'ve got a problem with include in a qmake project. In my .pro file I\'ve got:
INCLUDEPATH += \"C:\\OpenCV\\build\\include\"
and in my cpp
You should use double backslashes when in windows for qt creator with msvc. like this: INCLUDEPATH += C:\\libcurl\\libcurl-vc-x64-release-dll-ipv6-sspi-winssl\\include
this will fix the problem.