I am using MSVS2013.
I have setup a custom makefile C++ project that essentially calls a batch file that I wrote to invoke my compiler.
The output of my compiler creates warnings in the format:
>>> Warning <code> "c:\some\file\path\somefile.h" Line <num>(x,y): warning comment
or
>>> Warning <code> "somefile.c" Line <num>(x,y): warning comment
Note: The second one does not have the whole path, just the filename (not sure why), but the file is in the project source files list - so it should know about it.
When I double click the warning line visual studio does not open the file on that line. I am assuming that this is becuause it does not understand the syntax of the warning line to parse it.
So my question is how can I get MSVS2013 to parse the warning correctly?