You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
#include <CDT.h>
#include <CDTUtils.h>
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: