(cppcheck_path)
| 163 | |
| 164 | |
| 165 | def __get_cppcheck_binary(cppcheck_path): |
| 166 | if __make_cmd == "msbuild.exe": |
| 167 | return os.path.join(cppcheck_path, 'bin', 'cppcheck.exe') |
| 168 | if __make_cmd == 'mingw32-make': |
| 169 | return os.path.join(cppcheck_path, 'cppcheck.exe') |
| 170 | return os.path.join(cppcheck_path, 'cppcheck') |
| 171 | |
| 172 | |
| 173 | def has_binary(cppcheck_path): |
no test coverage detected