From c1f7f1a31f4cafdd17e09328c946e676ba2df144 Mon Sep 17 00:00:00 2001 From: Alexander Kornienko Date: Thu, 3 Mar 2016 10:45:59 +0000 Subject: [PATCH] [docs] Fix docs to work with doxygen 1.8.11 llvm-svn: 262605 --- clang-tools-extra/docs/doxygen-mainpage.dox | 9 +++++++++ clang-tools-extra/docs/doxygen.cfg.in | 14 +------------- clang-tools-extra/docs/doxygen.intro | 9 --------- 3 files changed, 10 insertions(+), 22 deletions(-) create mode 100644 clang-tools-extra/docs/doxygen-mainpage.dox delete mode 100644 clang-tools-extra/docs/doxygen.intro diff --git a/clang-tools-extra/docs/doxygen-mainpage.dox b/clang-tools-extra/docs/doxygen-mainpage.dox new file mode 100644 index 0000000..a4527b8 --- /dev/null +++ b/clang-tools-extra/docs/doxygen-mainpage.dox @@ -0,0 +1,9 @@ +/// \mainpage clang-tools +/// +/// \section main_intro Introduction +/// Welcome to clang tools. +/// +/// This documentation describes the **internal** software that makes +/// up clang tools, not the **external** use of clang tools. For +/// usage instructions, please see the programmer's guide or reference +/// manual. diff --git a/clang-tools-extra/docs/doxygen.cfg.in b/clang-tools-extra/docs/doxygen.cfg.in index 644a2f5..47054fc 100644 --- a/clang-tools-extra/docs/doxygen.cfg.in +++ b/clang-tools-extra/docs/doxygen.cfg.in @@ -751,7 +751,7 @@ INPUT = \ @abs_srcdir@/../modularize \ @abs_srcdir@/../pp-trace \ @abs_srcdir@/../tool-template \ - @abs_srcdir@/doxygen.intro + @abs_srcdir@/doxygen-mainpage.dox # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1797,18 +1797,6 @@ GENERATE_XML = NO XML_OUTPUT = xml -# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a -# validating XML parser to check the syntax of the XML files. -# This tag requires that the tag GENERATE_XML is set to YES. - -XML_SCHEMA = - -# The XML_DTD tag can be used to specify a XML DTD, which can be used by a -# validating XML parser to check the syntax of the XML files. -# This tag requires that the tag GENERATE_XML is set to YES. - -XML_DTD = - # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program # listings (including syntax highlighting and cross-referencing information) to # the XML output. Note that enabling this will significantly increase the size diff --git a/clang-tools-extra/docs/doxygen.intro b/clang-tools-extra/docs/doxygen.intro deleted file mode 100644 index 91cbcb9..0000000 --- a/clang-tools-extra/docs/doxygen.intro +++ /dev/null @@ -1,9 +0,0 @@ -/// @mainpage clang-tools -/// -/// @section main_intro Introduction -/// Welcome to clang tools. -/// -/// This documentation describes the @b internal software that makes -/// up clang tools, not the @b external use of clang tools. For -/// usage instructions, please see the programmer's guide or reference -/// manual. -- 2.7.4