finalcut/scripts/cppcheck.sh

10 lines
123 B
Bash
Raw Normal View History

2015-05-23 13:35:12 +02:00
#!/bin/bash
if [ $# -gt 0 ]
then
eval cppcheck --enable=all "$@"
else
eval cppcheck --enable=all ../src/ ../test/
fi