r262603 - [docs] Updated doxygen files to work well with doxygen 1.8.11
Alexander Kornienko via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 3 02:42:47 PST 2016
Author: alexfh
Date: Thu Mar 3 04:42:46 2016
New Revision: 262603
URL: http://llvm.org/viewvc/llvm-project?rev=262603&view=rev
Log:
[docs] Updated doxygen files to work well with doxygen 1.8.11
Doxygen 1.8.11 doesn't seem to like files with ".intro" extension by default.
Removed:
cfe/trunk/docs/doxygen.intro
Modified:
cfe/trunk/docs/doxygen.cfg.in
Modified: cfe/trunk/docs/doxygen.cfg.in
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/doxygen.cfg.in?rev=262603&r1=262602&r2=262603&view=diff
==============================================================================
--- cfe/trunk/docs/doxygen.cfg.in (original)
+++ cfe/trunk/docs/doxygen.cfg.in Thu Mar 3 04:42:46 2016
@@ -745,7 +745,7 @@ WARN_LOGFILE =
INPUT = @abs_srcdir@/../include \
@abs_srcdir@/../lib \
- @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
@@ -1791,18 +1791,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
Removed: cfe/trunk/docs/doxygen.intro
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/doxygen.intro?rev=262602&view=auto
==============================================================================
--- cfe/trunk/docs/doxygen.intro (original)
+++ cfe/trunk/docs/doxygen.intro (removed)
@@ -1,15 +0,0 @@
-/// @mainpage clang
-///
-/// @section main_intro Introduction
-/// Welcome to the clang project.
-///
-/// This documentation describes the @b internal software that makes
-/// up clang, not the @b external use of clang. There are no instructions
-/// here on how to use clang, only the APIs that make up the software. For
-/// usage instructions, please see the programmer's guide or reference
-/// manual.
-///
-/// @section main_caveat Caveat
-/// This documentation is generated directly from the source code with doxygen.
-/// Since clang is constantly under active development, what you're about to
-/// read is out of date!
More information about the cfe-commits
mailing list