c++.idde - Spaces in include path components?
- -scooter- <scottm cs.ucla.edu> Jan 13 2004
- Jan Knepper <jan smartsoft.us> Jan 13 2004
- -scooter- <scottm cs.ucla.edu> Jan 14 2004
- "Walter" <walter digitalmars.com> Jan 16 2004
- Scott Michel <scottm cs.ucla.edu> Jan 16 2004
- "Walter" <walter digitalmars.com> Jan 17 2004
Dippy question, but what if DMC was installed in "\Program Files\dm". How does one go about escaping the " " in the path name properly for the IDDE to pass the option to the compiler. Putting quotes in doesn't appear to help when specifying include directories, e.g., \Program Files\dm\stlport\stlport;.;.\include or \"Program Files"\dm\stlport\stlport;.;.\include -scooter
Jan 13 2004
I think it might take: "\Program Files\dm\stlport\stlport";.;.\include But I am not sure. If it does not work try it in the #defines area as: -I"\Program Files\dm\stlport\stlport" -DYOURDEF1 -DYOURDEF2 -scooter- wrote:Dippy question, but what if DMC was installed in "\Program Files\dm". How does one go about escaping the " " in the path name properly for the IDDE to pass the option to the compiler. Putting quotes in doesn't appear to help when specifying include directories, e.g., \Program Files\dm\stlport\stlport;.;.\include or \"Program Files"\dm\stlport\stlport;.;.\include -scooter
-- ManiaC++ Jan Knepper But as for me and my household, we shall use Mozilla... www.mozilla.org
Jan 13 2004
Jan Knepper wrote:I think it might take: "\Program Files\dm\stlport\stlport";.;.\include
Tried that but failed.-I"\Program Files\dm\stlport\stlport" -DYOURDEF1 -DYOURDEF2
Negative result on that hack. -scooter
Jan 14 2004
"-scooter-" <scottm cs.ucla.edu> wrote in message news:bu40tl$1nr7$1 digitaldaemon.com...Jan Knepper wrote:I think it might take: "\Program Files\dm\stlport\stlport";.;.\include
Tried that but failed.-I"\Program Files\dm\stlport\stlport" -DYOURDEF1 -DYOURDEF2
Negative result on that hack.
Spaces, + signs, and ~'s do not work in filenames with DMC. Sorry.
Jan 16 2004
Walter wrote:"-scooter-" <scottm cs.ucla.edu> wrote in message news:bu40tl$1nr7$1 digitaldaemon.com...Jan Knepper wrote:I think it might take: "\Program Files\dm\stlport\stlport";.;.\include
Tried that but failed.-I"\Program Files\dm\stlport\stlport" -DYOURDEF1 -DYOURDEF2
Negative result on that hack.
Spaces, + signs, and ~'s do not work in filenames with DMC. Sorry.
With all due respect, this probably needs changing. What's the default home directory for users on XP and 2003? "C:\Documents and Settings\JoeLUser". It's got a space in it. Yes, I figured out that the quick hack around the problem, but this question might just become a FAQ. -scooter
Jan 16 2004
"Scott Michel" <scottm cs.ucla.edu> wrote in message news:bu98vd$1b7a$1 digitaldaemon.com...Yes, I figured out that the quick hack around the problem, but this
might just become a FAQ.
I think you're right.
Jan 17 2004








"Walter" <walter digitalmars.com>