On Visual Studio I see one can set path of i.e. util\util.h on that side panel, right-click the project then
Properties > C/C++ > General > ...
I add util directory there and then I can do #include "util.h" on a file from another directory, instead of providing the full path util\util.h.
Besides the approach descrived, is there another way which also will allow me to #include "util.h" (not provide the full path)?
I'm not familiar with Visual Studio at all.