Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 391 Bytes

doxygen.md

File metadata and controls

36 lines (25 loc) · 391 Bytes

doxygen

install

sudo apt-get install doxygen graphviz

config

doxygen -g

modify the "Doxyfile":

PROJECT_NAME = project
CALL_GRAPH = YES
HAVE_DOT = YES
RECURSIVE = YES
EXCLUDE_PATTERNS = */.git/*
EXCLUDE_PATTERNS += */docs/*
EXCLUDE_PATTERNS += */test/*

generate

CD the code path:

doxygen ${Doxyfile path}

open html/index.html;