How to change predefined macros in Visual Studio 2015?

I am trying to modify predefined environment macros in Visual Studio 2015. In particular, this: VC_IncludePath

I see it and its meaning, but I cannot change it. I see no way to do this.

Enter a description of the image here.

+4
source share
2 answers

You can edit this file:

C: \ Program Files (X86) \ MSBuild \ Microsoft.Cpp \ v4.0 \ V140 \ Microsoft.Cpp.Common.props

+1
source

The place to change this environment variable is on the project properties page. Configuration Properties -> VC ++ Directories, as described in the MSDN documentation .

-3
source

Source: https://habr.com/ru/post/1599560/


All Articles