Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fail the build if cppcheck returns a non-zero exit code | Harald Brinkmann | 2018-10-11 | 5 | -1/+7 |
| | | | | | This allows the build failure to be tuned with cppcheck's options --error-exitcode=<n> and --exitcode-suppressions=<file>. | ||||
* | Clean up iwyu code to not be one big if statement. | Bill Hoffman | 2017-09-13 | 4 | -0/+7 |
| | | | | | | | | | | This commit changes the internal -E__run_iwyu to be -E__run_co_compile. This is used for co-compile commands. These are tools that want to mirror the compiler. For each compiler invocation the tool will be invoked first. This started as a way to implement include what you use (iwyu), but has expanded to include cpplint, cppcheck and others. Likely there will be more in the future as well. This commit implements each one in its own function and provides a way to add additional ones in the future with less work. | ||||
* | Add properties to run cppcheck along with the compiler | Bill Hoffman | 2017-08-30 | 12 | -0/+50 |
Create a `<LANG>_CPPCHECK` target property (initialized by a `CMAKE_<LANG>_CPPCHECK` variable) to specify a `cppcheck` command line to be run along with the compiler. |