You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
# |
|
# cppcheck |
|
# |
|
|
|
function check_code { |
|
cppcheck \ |
|
-j 4 \ |
|
--enable=style,performance,portability,missingInclude \ |
|
--inline-suppr \ |
|
--force \ |
|
--verbose \ |
|
. > /dev/null |
|
} |
|
|
|
echo "cppcheck..." |
|
|
|
cd ../src/plugins |
|
check_code |
|
|
|
cd ../lib/ |
|
check_code |
|
|
|
cd ../main |
|
check_code |
|
|
|
exit 0
|
|
|