I have a main.cpp file that relies on a header file located in another location.
#include "C:\SierraChart\ACS_Source\sierrachart.h"
My project is in C:\dev\
I don't want to specify an explicit path in the include directive, is it possible to add that absolute path as an additional include directory?
so I can just use:
#include "sierrachart.h"