Make build environment visible to IDEs working on a workspace
One thing a user might want to do with a workspace is develop on it with an IDE.
This works fine when just modifying sources as if using a normal text editor, but when we, for example, want to look up method definitions of a dependency library, we need to look inside artifacts of any dependencies of such an element.
i.e., the IDE will be looking for a directory structure sort of like:
.
├── app
│ └── src.c
└── lib
└── lib.h
But we can currently only find src.c
.
The library headers will be buried somewhere in ~/.cache/buildstream/artifacts
, but an IDE would have to access this directory, which is difficult because it relies on bst internals, and might be hidden in an ostree repo. We need some way to make these artifacts accessible to the user.
A suggestion that came up was to only try and create an interface for workspaced dependencies, so that we don't need to make the whole build environment accessible, but ideally of course the whole build environment becomes accessible to an IDE.