In VS2010 the VC++ Directories editing in Tools > Options has been deprecated. VC++ Directories are now available as a user property sheet, which is very convenient to keep the include/lib directories depending on different projects. Is there any way to do the similar thing in VS2008?
In VS2010 the VC++ Directories editing in Tools > Options has been deprecated. VC++
Share
After digging around, I figured out a way to partially do it: still with the property sheet.
we can create a new property sheet and set following items:
C/C++->additional include directorieslinker->additional lib directorieslinker->additional dependencies…
This will do most of the VC++ directories.
However, the executable directories is still missing. There are two parts need to be done.
c:\sss;%PATH%), then check the box on the bottom to expose this variable to the building environment.PATH=%DLLPATH%;%PATH%which will allow the debugger add the DLLPATH to the environment PATH.