Hello,
Is there a way to get XCode recognizing the context of errors and warnings when using an external build system that isn't "make" so that I can click on the errors/warnings and it takes me to that place in the source code file? I am using a bash script to wrap my builds (because I am using a Docker container for the build machine).
My build configuration:
XCode recognizes THAT there is an error or a warning, and shows me them in the "issue navigator". But these are not clickable or navigatable.
The "Report Navigator" shows the full build log (ie, as if I built from command line), and even has the line number and character number of the warning/error:
It seems like this is enough context information for XCode to be able to navigate to the error.
Is there some configuration that I'm missing, or am i out of luck?
thanks in advance,
John