summaryrefslogtreecommitdiff
path: root/xmake/actions/build/kinds/binary.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2019-01-03 22:37:30 +0800
committerruki <[email protected]>2019-01-03 09:45:01 +0800
commit21539005098febb08e7331e14cae59639c9a21fc (patch)
tree96b6eb1301a0cbae2fe532752bdc40b759994b41 /xmake/actions/build/kinds/binary.lua
parent22a3a1c21f41205fa5ea71a4fd0a0d9caa2b8963 (diff)
improve theme name
Diffstat (limited to 'xmake/actions/build/kinds/binary.lua')
-rw-r--r--xmake/actions/build/kinds/binary.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/actions/build/kinds/binary.lua b/xmake/actions/build/kinds/binary.lua
index ed249b376..9a77ed992 100644
--- a/xmake/actions/build/kinds/binary.lua
+++ b/xmake/actions/build/kinds/binary.lua
@@ -80,7 +80,7 @@ function _build_from_objects(target, buildinfo)
-- trace progress into
cprintf("${color.build.progress}" .. theme.get("text.build.progress_format") .. ":${clear} ", (buildinfo.targetindex + 1) * 100 / buildinfo.targetcount)
if verbose then
- cprint("${color.build.target.verbose}linking.$(mode) %s", path.filename(targetfile))
+ cprint("${color.build.target.dim}linking.$(mode) %s", path.filename(targetfile))
else
cprint("${color.build.target}linking.$(mode) %s", path.filename(targetfile))
end
@@ -114,7 +114,7 @@ function _build_from_sources(target, buildinfo, sourcebatch, sourcekind)
-- trace progress into
cprintf("${color.build.progress}" .. theme.get("text.build.progress_format") .. ":${clear} ", (buildinfo.targetindex + 1) * 100 / buildinfo.targetcount)
if verbose then
- cprint("${color.build.target.verbose}linking.$(mode) %s", path.filename(targetfile))
+ cprint("${color.build.target.dim}linking.$(mode) %s", path.filename(targetfile))
else
cprint("${color.build.target}linking.$(mode) %s", path.filename(targetfile))
end