Imported project file errors
I am importing a project that a colleague made. The project seems to be missing a lot of include files, I know I have the correct libraries in my repository but the project can't seem to find them. It seems like the filepath is pointing to C:/users/colleague/STM32Cube....
but I need to change it to C:/users/myUsername/STM32Cube....
Some of the CDT build console errors:
compilation terminated.
make[1]: *** [Middlewares/CMSIS/CMSIS/DSP/Source/TransformFunctions/subdir.mk:115: Middlewares/CMSIS/CMSIS/DSP/Source/TransformFunctions/arm_bitreversal.o] Error 1
make[1]: *** Waiting for unfinished jobs....
../Middlewares/CMSIS/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f32.c:30:10: fatal error: arm_common_tables.h: No such file or directory
#include "arm_common_tables.h"
^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
../Middlewares/CMSIS/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_init_f32.c:30:10: fatal error: arm_common_tables.h: No such file or directory
#include "arm_common_tables.h"
^~~~~~~~~~~~~~~~~~~~~
../Middlewares/CMSIS/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_init_q31.c:30:10: fatal error: arm_common_tables.h: No such file or directory
#include "arm_common_tables.h"
^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
compilation terminated.This is a screenshot from my project explorer:
How do I resolve include issues like this?
