If you’re using the headers from flucoma-core
in your C++ project then this is warning of a small breaking change that I’m about to commit to the main
branch.
The directory structure is changing from include/(algorithms etc)
to include/flucoma/(algorithms etc)
So you will need to change your includes:
#include <algorithms/...
→ #include <flucoma/algorithms/...
#include <data/...
→ #include <flucoma/data/...
Hopefully this is straightforward for you to do with a regular expression replace. In vscode, I updated our headers in one go with
find: #include <(algorithms|clients|data)
replace #include <flucoma/$1