Tool/software: TI C/C++ Compiler
Hi, I'm using CCS Cloud to compile out-of-box demo/example code. The compiler is throwing error 1965 at "include <descriptors.h>". descriptors.h exists and has already been found by the compiler (#include "descriptors.h"), but the <> include syntax means the file has be discoverable via project include-paths. However, this is a CCS Cloud environment and project paths are not editable...
It turns out that if the <> include is changed to an explicit "../../somedir/descriptors.h" then the compiler finds the file.
I don't really want to modify the example files in order to compile the example code. If I must modify every <descriptors.h>, I'd rather modify it with a variable like:
<%PATHVAR%descriptors,h> so that PATHVAR can be defined once. (please forgive DOS-like example)
I'm not familiar enough with the compiler to know whether a #define can help here.
I tried
#define PATHVAR "../../somedir/"
#include <PATHVARdescriptors.h>
...of course this doesn't work.
Any ideas are appreciated!
Thanks/Cheers.