Mudanças entre as edições de "Doxygen"

De WikiLICC
Ir para: navegação, pesquisa
m
m
 
Linha 1: Linha 1:
 
Cria documentacão de software (Fortran, C e outros)
 
Cria documentacão de software (Fortran, C e outros)
  
Apenas rode
+
Crie um arquivo de configuraćão:
[usuario] $ doxygen meuprograma.f90
 
 
 
Para criar um arquivo de configuraćão:
 
 
  [usuario] $ doxygen -g
 
  [usuario] $ doxygen -g
e edite o arquivo
+
Edite o arquivo (habilitando algumas općões)
 
  [usuario] $ vi Doxyfile
 
  [usuario] $ vi Doxyfile
 
+
     ..
 
 
Step 1
 
 
 
Run
 
 
 
     % doxygen -g
 
 
 
which creates a Doxyfile that tells doxygen what you want it to do.
 
 
 
 
Step 2
 
 
 
Edit the Doxyfile. The important entries are:
 
 
 
 
     PROJECT_NAME
 
     PROJECT_NAME
 
     OPTIMIZE_FOR_FORTRAN (set to YES)
 
     OPTIMIZE_FOR_FORTRAN (set to YES)
Linha 35: Linha 18:
 
     DOT_PATH (if the dot program from graphviz is not in your $PATH)
 
     DOT_PATH (if the dot program from graphviz is not in your $PATH)
  
Step 3
+
Para criar a documentaćão rode
 
+
[usuario] $ doxygen Doxyfile
Run
 
 
 
    % doxygen Doxyfile
 

Edição atual tal como às 21h41min de 25 de novembro de 2010

Cria documentacão de software (Fortran, C e outros)

Crie um arquivo de configuraćão:

[usuario] $ doxygen -g

Edite o arquivo (habilitando algumas općões)

[usuario] $ vi Doxyfile
   ..
   PROJECT_NAME
   OPTIMIZE_FOR_FORTRAN (set to YES)
   EXTRACT_ALL (set to YES)
   EXTRACT_PRIVATE (set to YES)
   EXTRACT_STATIC (set to YES)
   INPUT (in my case it is “./code”)
   FILE_PATTERNS (if extension is not .f90)
   HAVE_DOT (set to YES)
   CALL_GRAPH (set to YES)
   CALLER_GRAPH (set to YES if you want)
   DOT_PATH (if the dot program from graphviz is not in your $PATH)

Para criar a documentaćão rode

[usuario] $ doxygen Doxyfile