aboutsummaryrefslogtreecommitdiffhomepage
path: root/Doxyfile
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-12-02 17:13:36 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-12-02 17:13:36 +0000
commitc62b0f8fd0cfaee1791e7bb4f349ad165df4f86b (patch)
treeb9eeb38f308f6a417a51a7f5862823c2d7cfc5e4 /Doxyfile
parent3f7ef4b0c12e583f681ec48d69591e68552571ea (diff)
Minor Doxyfile updates
BUG=404 Review URL: http://codereview.appspot.com/5434108 git-svn-id: http://skia.googlecode.com/svn/trunk@2789 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'Doxyfile')
-rw-r--r--Doxyfile26
1 files changed, 25 insertions, 1 deletions
diff --git a/Doxyfile b/Doxyfile
index a1c7e4f10b..69c9ddb439 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -1,6 +1,30 @@
+# How to run doxygen and store its results in the Skia repo, so that they can be
+# browsed at http://skia.googlecode.com/svn/docs/html/index.html :
+#
+# cd
+# TEMPDIR=/tmp/skia-doxygen
+# rm -rf $TEMPDIR
+# mkdir -p $TEMPDIR
+# cd $TEMPDIR
+# svn checkout https://skia.googlecode.com/svn/trunk
+# svn checkout https://skia.googlecode.com/svn/docs
+# cd trunk
+# doxygen Doxyfile
+# cd ../docs
+# NEWFILES=$(svn status | grep ^\? | awk '{print $2}')
+# svn add $NEWFILES
+# find . -name *.html -exec svn propset svn:mime-type text/html '{}' \;
+# find . -name *.css -exec svn propset svn:mime-type text/css '{}' \;
+# find . -name *.js -exec svn propset svn:mime-type text/javascript '{}' \;
+# find . -name *.gif -exec svn propset svn:mime-type image/gif '{}' \;
+# find . -name *.png -exec svn propset svn:mime-type image/png '{}' \;
+# svn commit --message 'commit doxygen-generated documentation'
+# cd
+# rm -rf $TEMPDIR
+
PROJECT_NAME = skia
PROJECT_BRIEF = 2D Graphics Library
-OUTPUT_DIRECTORY = doc
+OUTPUT_DIRECTORY = ../docs
EXTRACT_ALL = NO
INHERIT_DOCS = YES