├── CMakeLists.txt ├── LICENSE ├── README.md ├── bin ├── check_if_tool_runs.py ├── cmake_clang_tools_helpers.py ├── run_clang_format_tool.py └── run_clang_tidy_tool.py ├── cmake ├── cmake_clang_tools-macros.cmake.in ├── cmake_clang_toolsConfig.cmake.in └── cmake_uninstall.cmake.in ├── config ├── .clang-format ├── .clang-tidy └── config.yaml ├── example ├── .gitignore ├── CMakeLists.txt ├── README.md ├── include │ ├── ClangToolsExample.hpp │ └── helper_functions.hpp └── src │ ├── ClangToolsExample.cpp │ └── main.cpp ├── package.xml └── test └── test_cmake_clang_tools.py /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/README.md -------------------------------------------------------------------------------- /bin/check_if_tool_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/bin/check_if_tool_runs.py -------------------------------------------------------------------------------- /bin/cmake_clang_tools_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/bin/cmake_clang_tools_helpers.py -------------------------------------------------------------------------------- /bin/run_clang_format_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/bin/run_clang_format_tool.py -------------------------------------------------------------------------------- /bin/run_clang_tidy_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/bin/run_clang_tidy_tool.py -------------------------------------------------------------------------------- /cmake/cmake_clang_tools-macros.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/cmake/cmake_clang_tools-macros.cmake.in -------------------------------------------------------------------------------- /cmake/cmake_clang_toolsConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/cmake/cmake_clang_toolsConfig.cmake.in -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /config/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/config/.clang-format -------------------------------------------------------------------------------- /config/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/config/.clang-tidy -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/config/config.yaml -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/example/README.md -------------------------------------------------------------------------------- /example/include/ClangToolsExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/example/include/ClangToolsExample.hpp -------------------------------------------------------------------------------- /example/include/helper_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/example/include/helper_functions.hpp -------------------------------------------------------------------------------- /example/src/ClangToolsExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/example/src/ClangToolsExample.cpp -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/package.xml -------------------------------------------------------------------------------- /test/test_cmake_clang_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANYbotics/cmake_clang_tools/HEAD/test/test_cmake_clang_tools.py --------------------------------------------------------------------------------