Re: [Qt-creator] Editor cannot find include files when path has spaces

2009-12-03 Thread Robert de Vries
Filipe Maia schreef: >> THIRDPARTY = "C:\Program Files\ThirdParty" >> >> If I do >> INCLUDEPATH += $${THIRDPARTY}/include >> in my .pro file the include does not get found. >> > > Could it be that mixing forward and backward slashes causes the problem? > Nope, does not make a difference. _

Re: [Qt-creator] Editor cannot find include files when path has spaces

2009-12-03 Thread Filipe Maia
> THIRDPARTY = "C:\Program Files\ThirdParty" > > If I do > INCLUDEPATH += $${THIRDPARTY}/include > in my .pro file the include does not get found. Could it be that mixing forward and backward slashes causes the problem? ___ Qt-creator mailing list Qt-cre

Re: [Qt-creator] Editor cannot find include files when path has spaces

2009-12-03 Thread Danny Price
Ah. I think I tried something like that at first to avoid duplicating the path. Couldn't get it to work. On Thu, Dec 3, 2009 at 10:54 AM, Robert de Vries < robert.h.de.vr...@gmail.com> wrote: > Danny Price schreef: > > > > > > On Thu, Dec 3, 2009 at 10:22 AM, Robert de Vries > > mailto:robert.h.d

Re: [Qt-creator] Editor cannot find include files when path has spaces

2009-12-03 Thread Robert de Vries
Danny Price schreef: > > > On Thu, Dec 3, 2009 at 10:22 AM, Robert de Vries > mailto:robert.h.de.vr...@gmail.com>> wrote: > > Danny Price schreef: > > It's a bad idea to use filepaths with spaces or special > characters, in > > any IDE. It will likely break cross-platform. If you'r

Re: [Qt-creator] Editor cannot find include files when path has spaces

2009-12-03 Thread Danny Price
On Thu, Dec 3, 2009 at 10:22 AM, Robert de Vries < robert.h.de.vr...@gmail.com> wrote: > Danny Price schreef: > > It's a bad idea to use filepaths with spaces or special characters, in > > any IDE. It will likely break cross-platform. If you're including such > > a path that you cannot change, add

Re: [Qt-creator] Editor cannot find include files when path has spaces

2009-12-03 Thread Robert de Vries
Danny Price schreef: > It's a bad idea to use filepaths with spaces or special characters, in > any IDE. It will likely break cross-platform. If you're including such > a path that you cannot change, add the directory path to the > INCLUDEPATH variable of the pro file (assuming you're using qmak

Re: [Qt-creator] Editor cannot find include files when path has spaces

2009-12-03 Thread Danny Price
It's a bad idea to use filepaths with spaces or special characters, in any IDE. It will likely break cross-platform. If you're including such a path that you cannot change, add the directory path to the INCLUDEPATH variable of the pro file (assuming you're using qmake) with escapes for the spaces.

[Qt-creator] Editor cannot find include files when path has spaces

2009-12-03 Thread Robert de Vries
Hi, I have another minor nuisance. When an include file comes from a path that has spaces in it, the editor does not seem to be able to find it. It is displayed with a green squiggly line below it. The code compiles fine, but Qt Creator cannot handle it properly. I am using Qt Creator 1.3.0 on