We code with C++ and have encountered a problem when trying to #include <GripPipeline.h>. The .cpp and .grip files are in the same folder as the .h file, along with robot.cpp. When we try to build the code, it returns the following error:
…\2019 Deep Space\src\main\cpp\Robot.cpp:26:26: fatal error: GripPipeline.h: No such file or directory
#include <GripPipeline.h>
^
compilation terminated.
compiling GripPipeline.cpp successful.
We’ve also tried moving the .h file to different places, like the include folder. Thanks for any help in fixing this issue.