Hi,
I added the project Configuration Property: C/C++|General|Additional Include Directories=$(SolutionDir)
On my system this adds:
/I"C:\ASC\Code\CSharp\G3D\"
to the compiler Command Line. This works fine when building from the IDE. If I use MSBuild, the /I switch is overwritten with:
/IC:\ASC\Code\CSharp\G3D\Asc3dScene\
which is the Project directory (i.e. $(ProjectDir)). Is there any way to stop this from happening or any other way to specify Additional Include Directories. MSBuild has properties AdditionalLibPaths and AssemblySearchPaths, neither of these work as Additional Include Directories.
Thanks