diff options
author | Michal 'vorner' Vaner <vorner@vorner.cz> | 2013-06-12 10:38:58 +0200 |
---|---|---|
committer | Michal 'vorner' Vaner <vorner@vorner.cz> | 2013-06-12 10:44:45 +0200 |
commit | e81de23719368f0fcea05d1607c2ffafb76f0359 (patch) | |
tree | 345cbe0c82f2ad1246c9f6c9ccf729c2df646632 /Makefile.am | |
parent | Revert "[2726] Enable more thorough cppcheck" (diff) | |
download | kea-e81de23719368f0fcea05d1607c2ffafb76f0359.tar.xz kea-e81de23719368f0fcea05d1607c2ffafb76f0359.zip |
[2726] Enable more thorough cppcheck
It seems to check more and run longer. It also produces bunch of new
warnings.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 10ef3214a2..edfce76f74 100644 --- a/Makefile.am +++ b/Makefile.am @@ -110,7 +110,8 @@ report-coverage: report-cpp-coverage report-python-coverage # for static C++ check using cppcheck (when available) cppcheck: - cppcheck --enable=all --suppressions src/cppcheck-suppress.lst --inline-suppr \ + cppcheck -I./src/lib --enable=all --suppressions \ + src/cppcheck-suppress.lst --inline-suppr \ --quiet --error-exitcode=1 \ --template '{file}:{line}: check_fail: {message} ({severity},{id})' \ src |