Currently my output is:
{path}{filename}:{line}:{column} {message}
but double clicking is not jumping to the error line. What is the expected default?
What is the default format for build output?
aggsol
#1
0 Likes
Expectation is set in file_regex
property in build system’s definition. You can read about it here. In short you need to put a regex in this property with 4 capturing groups: for filepath, line, column and message.
0 Likes
aggsol
#5
Ah thank you! FYI for my output format I use the following Regex:
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
0 Likes