How to make header files included by <ClInclude Include=.../> visible globally in the project?

1.7k Views Asked by At

When I have this line in my .vcxproj file

<ClInclude Include="..\include\something_*.h"/>

And then in my .c file located somewhere else I use a simple

#include "something_a.h"

The header file won't be visible in compilation, although it is visible in the project/solution explorer in the Visual Studio.

I know that I can simply add my include folder to the additional include directories list, and the compiler will use that directory to search for include files, but isn't it something that tag already supposed to do by itself?

0

There are 0 best solutions below