Currently when building Shake outputs lines such as:
# gcc (for debugBuild)
But that is not informative for our application, so we'd like to print something like:
objectFileName.o[configurationFlavour]
How can you do that in Shake?
Currently when building Shake outputs lines such as:
# gcc (for debugBuild)
But that is not informative for our application, so we'd like to print something like:
objectFileName.o[configurationFlavour]
How can you do that in Shake?
The easiest thing is to play with the
Verbosity
field ofshakeVerbosity
, or with--verbose
. AtNormal
I get:And at
Verbose
I get:If that's not enough you can remove the output from
cmd
withquietly
and print your own messages withputNormal
: