JacobDomagala / StaticAnalysis

GitHub action performs static analysis on C++/Python code, flags issues, and posts comments directly on PRs.
MIT License
31 stars 10 forks source link

Support for makefile based projects #70

Closed akshaim closed 1 year ago

akshaim commented 1 year ago

My current project does not use CMake to build a makefile. Instead, we write the makefile since it's pretty complex. Is there a possibility of using make projects directly ?

I can execute cppcheck and clang-tidy to generate XML outputs. Can you add an option to parse the XML ?

JacobDomagala commented 1 year ago

I've added input option use_cmake which disables CMake. Then globing function is used to collect all files (together with exclude_dirs). Let me know if it works for you.