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
Verbosityfield ofshakeVerbosity, or with--verbose. AtNormalI get:And at
VerboseI get:If that's not enough you can remove the output from
cmdwithquietlyand print your own messages withputNormal: