ament_cppcheck ============== Performs a static code analysis of C / C++ source files using `CppCheck <http://cppcheck.sourceforge.net/>`_. Files with the following extensions are being considered: ``.c``, ``.cc``, ``.cpp``, ``.cxx``, ``.h``, ``.hh``, ``.hpp``, ``.hxx``. How to run the check from the command line? ------------------------------------------- The command line tool is provided by the package `ament_cppcheck <https://github.com/ament/ament_lint>`_. How to run the check from within a CMake ament package as part of the tests? ---------------------------------------------------------------------------- ``package.xml``: .. code:: xml <buildtool_depend>ament_cmake</buildtool_depend> <test_depend>ament_cmake_cppcheck</test_depend> ``CMakeLists.txt``: .. code:: cmake find_package(ament_cmake REQUIRED) if(BUILD_TESTING) find_package(ament_cmake_cppcheck REQUIRED) ament_cppcheck() endif() When running multiple linters as part of the CMake tests the documentation of the package `ament_lint_auto <https://github.com/ament/ament_lint>`_ might contain some useful information. The documentation of the package `ament_cmake_test <https://github.com/ament/ament_cmake>`_ provides more information on testing in CMake ament packages.