My customTypes.h file is in C:/svn/trunk/vtd-xml, how do I force include ?
I tried each of the following ways in my .pro file, but it's giving error
Qt Code:
  1. -include "customTypes.h"
  2. INCLUDEPATH += <some/path> \
  3. C:/svn/trunk/vtd-xml
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. -include "C:/svn/trunk/vtd-xml/customTypes.h"
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. // Without quotes
  2. -include C:/svn/trunk/vtd-xml/customTypes.h
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. -include -I"C:/svn/trunk/vtd-xml/customTypes.h"
To copy to clipboard, switch view to plain text mode 
All the attempts giving -
Qt Code:
  1. Extra characters after test expression.
  2. [Makefile] Error 3
To copy to clipboard, switch view to plain text mode