Welcome to mirror list, hosted at ThFree Co, Russian Federation.

make_quiet.sh « example_scripts « cmake « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 602d165e0dfd7ef457988e3145f613eb93f11aae (plain)
1
2
3
4
5
6
#!/bin/bash
# filters CMake output to be more like nan-makefiles

FILTER="^Scanning \|Linking \(C\|CXX\) static library \|Built target "
make $@ | grep --line-buffered -v "$FILTER" | sed  -e 's/^.*\//  /'
echo "Build Done"