I've inherited a PlatformBuilder subproject that needs the ATLMFC includes. It was installed at C:\Program Files\Microsoft Visual Studio 9.0\VC\ce\atlmfc\include
When trying to include this (in the sources file): INCLUDES=C:\Program Files\Microsoft Visual Studio 9.0\VC\ce\atlmfc\include
it gets translated to -IC:\ProgramFiles\MicrosoftVisualStudio9.0\VC\ce\atlmfc\include
(Where the space are dropped at the cmdline.) INCLUDES="C:\Program Files\Microsoft Visual Studio 9.0\VC\ce\atlmfc\include"
does not work. (syntax error)
I've tried to add the path to the system includes (Projects and Solutions: C++ Directories) but PlatformBuilder does not use these dir's during a build.
Is there a way to include a path with spaces in Platform Builder?