This is not an issue, just a suggestion.
Currently, it seems that using the "build workspace" command just build sequentially all projects. It works nice, but it could be enhanced: when you you have a workspace with several small projects, there is (or I know) no way to compile individual C++ files at the same moment if they belongs to a different project.
By example, you have a big project A, which rely on few libraries and load some plug-ins. If you modify a header of the plug-in API, you will have to recompile most of plug-ins and their host. Currently, C::B is not able to compile in same time 2 plug-ins, because it waits for other to finish.
For the linking step, it makes sense, as linker needs to know symbols from projects on which it depends, but compilation does not.
But I guess it could be very complex to do.