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
Post a Comment