We have a large linux project, consisting of several pieces. I created one solution for it like so
solution
projectA
projectB
on linux build command is run in the root directory of this project, and produces errors in the following format:
projectA/source.cpp some_error
in visual studio in the build output window it gets mapped into
c:\path_to_solution\projectA\projectA\source.cpp some_error
As you can see, projectA part is duplicated. So line with error becomes non-clickable, because system can’t find the file.
Is there any way to map it differently, short off piping linux output via some script that would cut off projectA part from the path?