This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/build_files/cmake/example_scripts/make_quiet.sh

7 lines
223 B
Bash
Raw Normal View History

#!/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"