Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Code Metrics Analysis for Unmanaged C++ Code [closed]

Does anyone know of a free tool, similar to what is built into Visual Studio 2010 for managed code, that can do analysis of unmanaged, MFC C++ code and give metrics (lines of code, dependency or coupling, etc)?

I've been searching on Google for awhile, but really haven't been able to find anything that works. Thanks a ton!

like image 513
JToland Avatar asked Feb 23 '12 20:02

JToland


2 Answers

Source Monitor is a good free tool tool for code metrics such as LoC and complexity and also produces kiviat graphs. But it does not have any depedency or coupling metrics.

like image 110
DPD Avatar answered Nov 01 '22 09:11

DPD


Our SourceMeter tool can analyze your Visual C++ project and provide you all the information you asked for: metrics (lines of code, dependency, coupling, 60+ metrics altogether). The results are in standard CSV files, which you can easily open in e.g. spreadsheet editors.

like image 3
Rudolf FERENC Avatar answered Nov 01 '22 07:11

Rudolf FERENC