Correct small errors in cmake theme
Do not use nested groups for "Linking" messages. Allow "-" in file names for "Building" messages.
This commit is contained in:
parent
460b126583
commit
f7c73833b4
1 changed files with 2 additions and 2 deletions
|
|
@ -23,13 +23,13 @@ def theme():
|
||||||
[ "^(Scanning dependencies of target)(.*)$",
|
[ "^(Scanning dependencies of target)(.*)$",
|
||||||
performing, "normal,bold" ],
|
performing, "normal,bold" ],
|
||||||
# Link
|
# Link
|
||||||
[ "^(Linking .* (library|executable) )(.*/)+(.+(\.[aso]+)*)$",
|
[ "^(Linking .* )(library|executable) (.*/)+(.+(\.[aso]+)*)$",
|
||||||
performing, "normal,normal,bold" ],
|
performing, "normal,normal,bold" ],
|
||||||
# [percent] Built
|
# [percent] Built
|
||||||
[ "^\[\s*[0-9]+%\]\s(Built target)(\s.*)$",
|
[ "^\[\s*[0-9]+%\]\s(Built target)(\s.*)$",
|
||||||
performed, "normal,bold" ],
|
performed, "normal,bold" ],
|
||||||
# [percent] Building
|
# [percent] Building
|
||||||
[ "^\[\s*[0-9]+%\]\s(Building \w* object)(\s.*/)(\w+.c.*)(.o)$",
|
[ "^\[\s*[0-9]+%\]\s(Building \w* object)(\s+.*/)([-\w]+.c.*)(.o)$",
|
||||||
performing, "normal,normal,bold,normal"],
|
performing, "normal,normal,bold,normal"],
|
||||||
# make errors
|
# make errors
|
||||||
[ "make\[[0-9]+\].*", "yellow"],
|
[ "make\[[0-9]+\].*", "yellow"],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue