Hi there. I wanted to install squiggles to generate 2d trajectories for my robot. I am on C++ VS Code using the VEX extension. The installation instructions from the link says to add
the contents of the
include
andsrc
directories to your project.
When I tried this, it seemed like the include paths were all messed up. I included the squiggles header file like this
#include "../robotsquiggles-main/main/include/squiggles.hpp"
My file structure looks like this
The error I got was this
Do I have to use CMake? Other libraries like OkapiLib just use #include "squiggles.hpp"
to start using squiggles vs the relative file path I used.