Visual Studio Variable Declaration

I have a project that has the following line in an additional section:

"$ (SOMEPATH_SHORTNAME) \ include"

Can someone tell me where I can define $ (SOMEPATH)? I can't find it just by searching in Visual Studio

+6
visual studio
source share
3 answers

If this is not an environment variable, macros are the place to look. In the property sheets, click the (...) button next to the "Additional directory inserts" line and expand the "Macros →" button in the dialog box that appears.

+7
source share

Check environment variables.

+2
source share
  • Right-click My Computer and select Properties.
  • Click the Advanced tab.
  • Select environment variables.
  • Select one of the following options for the user or system variable:
  • Click Create to add a new variable name and value.
  • Select an existing variable and click Modify to change its name or value.
+1
source share

All Articles