Doxyfile 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. #
  2. # ngIRCd -- The Next Generation IRC Daemon
  3. # Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. # Please read the file COPYING, README and AUTHORS for more information.
  10. #
  11. # This file describes the settings to be used by the documentation system
  12. # doxygen (www.doxygen.org) for ngIRCd.
  13. #
  14. #---------------------------------------------------------------------------
  15. # Project related configuration options
  16. #---------------------------------------------------------------------------
  17. DOXYFILE_ENCODING = UTF-8
  18. PROJECT_NAME = ngIRCd
  19. PROJECT_BRIEF = "Lightweight Internet Relay Chat server"
  20. PROJECT_LOGO = "../../contrib/ngIRCd-Logo.gif"
  21. OUTPUT_DIRECTORY = .
  22. STRIP_FROM_PATH = ../..
  23. JAVADOC_AUTOBRIEF = YES
  24. OPTIMIZE_OUTPUT_FOR_C = YES
  25. TYPEDEF_HIDES_STRUCT = YES
  26. TAB_SIZE = 8
  27. #---------------------------------------------------------------------------
  28. # Build related configuration options
  29. #---------------------------------------------------------------------------
  30. EXTRACT_ALL = YES
  31. EXTRACT_STATIC = YES
  32. SHOW_DIRECTORIES = YES
  33. #---------------------------------------------------------------------------
  34. # configuration options related to warning and progress messages
  35. #---------------------------------------------------------------------------
  36. QUIET = NO
  37. WARNINGS = YES
  38. WARN_IF_UNDOCUMENTED = YES
  39. WARN_IF_DOC_ERROR = YES
  40. WARN_NO_PARAMDOC = YES
  41. #---------------------------------------------------------------------------
  42. # configuration options related to the input files
  43. #---------------------------------------------------------------------------
  44. INPUT = ../../src
  45. INPUT_ENCODING = UTF-8
  46. RECURSIVE = YES
  47. #---------------------------------------------------------------------------
  48. # configuration options related to source browsing
  49. #---------------------------------------------------------------------------
  50. SOURCE_BROWSER = YES
  51. STRIP_CODE_COMMENTS = NO
  52. REFERENCED_BY_RELATION = YES
  53. REFERENCES_RELATION = YES
  54. #---------------------------------------------------------------------------
  55. # Output formats
  56. #---------------------------------------------------------------------------
  57. GENERATE_HTML = YES
  58. HTML_FOOTER = footer.inc.html
  59. HTML_DYNAMIC_SECTIONS = YES
  60. GENERATE_DOCSET = NO
  61. GENERATE_HTMLHELP = NO
  62. GENERATE_LATEX = NO
  63. GENERATE_RTF = NO
  64. GENERATE_MAN = NO
  65. GENERATE_XML = NO
  66. GENERATE_AUTOGEN_DEF = NO
  67. GENERATE_PERLMOD = NO
  68. #---------------------------------------------------------------------------
  69. # Configuration options related to the preprocessor
  70. #---------------------------------------------------------------------------
  71. PREDEFINED = DEBUG ZLIB PAM ZEROCONF CONN_MODULE __client_c__
  72. # -eof-