Are there any tools out there for producing Code Metrics (Such as Cyclomatic Complexity, Lines of Code, Comment to Code Ratio, etc) for Visual C++ 2012/2013 or 2015?
We need to be able to run a command-line tool to generate these metrics (And output them to some kind of file) so that we can automatically run the analysis as per of our Continuous Integration process. Note that we don't need a complete static analysis tool, as we're already using (And happy with) the Static Code Analysis tool built into Visual C++ (However this doesn't include complexity checking).
Most of the "Visual Studio Code Metrics" tools out there only seem to support Managed code (C# etc) and not C++.
I've seen similar questions on here from a few years ago, but I was hoping there may be some more up to date options. I've not found much through Google.
Thanks in Advance. Ben