Continuous pursuit technical details
分类: C/C++
2013-11-25 11:50:18
######################################### # # # This is the procedure to build the # # Architecture of your own subsystem # # (C/c++/Java/c#) # # Hope it will be helpful # # # ######################################### ######################################### # # # Powered by # # Eric Zhou # # Eric.jp.zhou@alcatel-lucent.com # # # ######################################### ========================================== + Start from Here + ========================================== ######################################### # (1) Download tools # ######################################### ## Two tools needed (the two files were saved under ~erzhou/download/) 1> graphviz ( This tool is used to create graph of FUNCTIONS ) 2> doxygen ( This tool is used to generate Architecture of a subsystem) Install these two tools and you will see it in Start->Programs->** ######################################### # (2) generate Subsystem Architecture # ######################################### ## Open doxygen in Start->Programs->doxygen->Doxywizard 1> Click Wizard Project: Input Project Name (e.g. VitalID) Input Project version (e.g. 1) Input Source Code Directory (where your source code is put, you need download the source code from lsslogin1) Mode: Select < all entities > Select << Include cross-referenced source code in the output >> Select Programming Language of your source code Output : Select < with frame and navigation tree > Select < with search function > Diagrams: Select every thing under [Use dot tool from the GraphViz package to generage] 2> Save Wizard 3> Select working directory 4> Run doxygen to generate Architecture of your subsystem. ######################################### # (3) comments # ######################################### ## If you wanna to generate other kind of files (e.g. man pages), ## you need change the settings. ========================================== + Stop Here + ==========================================