All source files located outside "\include" folder are referring to the library without explicitly set the relative path (it expects that "cdt.h" it is in the include search path).
This forces to add the incldue folder as additional include directory (I'm using vs2019).
I think it is better to use the relative path to keep consistent with the installation.
In case it is wanted, I think it is better to use the <> instead of the "" to clarify that the included file must be available at the root of the search path.
All source files located outside "\include" folder are referring to the library without explicitly set the relative path (it expects that "cdt.h" it is in the include search path). This forces to add the incldue folder as additional include directory (I'm using vs2019).
I think it is better to use the relative path to keep consistent with the installation.
I.e. in CDT\extras\InitializeWithGrid.h replace
with
In case it is wanted, I think it is better to use the <> instead of the "" to clarify that the included file must be available at the root of the search path.