File: cppcheck.sh

package info (click to toggle)
finalcut 0.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,832 kB
  • sloc: cpp: 90,264; makefile: 546; sh: 412
file content (9 lines) | stat: -rwxr-xr-x 209 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/sh

if [ $# -gt 0 ]
then
  eval cppcheck --force --language=c++ --std=c++14 --enable=all -I../ "$@"
else
  eval cppcheck --force --language=c++ --std=c++14 --enable=all -I../ ../final/ ../examples/
fi