Doxygen conf tip

From 흡혈양파의 인터넷工房
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Doxygen 의 설정파일에 관련된 몇가지 tip


설정파일 기준으로 특정폴더만 doxygen 대상으로 지정하고 싶어요

INCLUDE_FILE_PATTERNS = /디렉토리 이름

example : INCLUDE_FILE_PATTERNS = /controllers /core /helpers /models /libraries


doxygen 을 사용할때 하위디렉토리까지 검색에 포함시키고 싶어요

RECURSIVE = YES


소스코드가 unicode 에요. 어떻게 하나요?

INPUT_ENCODING = UTF-8


doxygen 을 이용한 결과물을 한글로 보고싶어요

OUTPUT_LANGUAGE = Korean


결과물에 굳이 latex 은 생성이 안됐으면 좋겠어요

GENERATE_LATEX = NO


doxygen 의 분석소스에 class 가 들어있는경우 이걸 diagram 으로 포함되게 하고싶어요

CLASS_DIAGRAMS = YES
DOT_FONTPATH = /usr/bin/dot


git 를 commit 할때 자꾸 UTF-8 관련 경고메세지가 나와요 어떻게 하나요

  • 작업을 하는 client 에서 다음의 내용을 실행해준다
    $ git config --global i18n.commitEncoding UTF-8
    $ git config --global i18n.logoutputencoding UTF-8
    
  • 참고주소 :: http://gypark.pe.kr/wiki/Git#H_2


Doxygen 에서 특정파일만 해당이 안되게 하고싶어요. 어떻게 하나요