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


when have line in .vcxproj file

<clinclude include="..\include\something_*.h"/> 

and in .c file located somewhere else use simple

#include "something_a.h" 

the header file won't visible in compilation, although visible in project/solution explorer in visual studio.

i know can add include folder additional include directories list, , compiler use directory search include files, isn't tag supposed itself?


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -