README.doxygen 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. Documentation for generating doxygen documentation
  2. ---------------------------------------------------------
  3. 1. Options for gendox
  4. More up-to-date command line options are available via
  5. the command ./gendox --help
  6. usage: "sh gendox [ <target(s)> ] [ -o <output_dir> ]"
  7. or "./gendox [ <target(s)> ] [ -o <output_dir> ]"
  8. <target(s)>
  9. The directory, or directories to generate the
  10. documentation from.
  11. -o
  12. Specifies the output directory <output_dir> which
  13. should follow the -o switch
  14. -q --quiet
  15. Stops the script from outputing status information,
  16. other than errors.
  17. -k --kill
  18. Kills other running doxygen pids.
  19. eg: ./gendox include/ -o ../Documentation
  20. * This will produce documentation for the include files,
  21. and output to the directory specified one level above the
  22. current directory.
  23. The target can be the current directory "./" in which case
  24. doxygen will generate documentation for all subdirectories
  25. of the current directory recursively.
  26. The default output directory is currently ...
  27. > ../GtkRadiant-doxygen
  28. * If the script is called without any target directories
  29. it will generate documentation for the core of radiant...
  30. include/ libs/ radiant/ and plugins/
  31. If there are specific options that you'd like to customise,
  32. the DoxyConfig file is used to generate the file from which
  33. doxygen gets its settings from. So any changes that need
  34. to be made should be made to this file.
  35. Gef :]
  36. (gefdavis@dingoblue.net.au)
  37. ---------------------------------------------------------