Invalidate C++ app

This commit is contained in:
Fabien Freling 2019-07-12 14:06:55 +02:00
parent 6eb0e61426
commit fda60ba538
2 changed files with 10 additions and 0 deletions

9
scripts/invalidate_cpp.sh Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -euo pipefail
for dir in _build/qt/*; do
pushd $dir
cmake --build . --target clean
popd
done