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:
Johann Dreo 2013-09-19 14:02:24 +02:00
commit f7c73833b4

View file

@ -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"],