(note - my core problem is that I'm trying to compile a file that's larger than 32KB, so I can't use uVision - if there is an easier way to circumvent this then I don't really care about getting Embedded Studio to work.)
So I've followed this tutorial (link) for importing a uVision project into Segger Embedded Studio. I'm using an MPU example library (link) and would like to compile an example that's >32KB, so to test out SES I'm first trying to import a file that both SES and uVision can compile to make sure the file works in the first place on uVision. I've confirmed the project builds and runs out of the box on uVision, but when importing the project in SES, all of my #include statements throw an error: "nrf.h: No such file or directory." When importing, I made sure to select "use Embedded Studio's Internal Toolchain (GCC/Clang)," but when I check "Project -> Edit Options -> Preprocessor -> User Include Directories" I don't see any directories by default.
To fix this, I copy over all of the relative file-paths from uVision's "Options for Target -> C/C++ -> Include Paths", but even after copying these relative paths the files are not found. The only remedy I've found so far is searching for each include file, finding the directory it's contained in, and hardcoding that file's absolute path in the "User Include Directories" field.
Any advice on how to get paths to #include files to work?
Thanks in advance!