Home | History | Annotate | only in /external/skia/tools/doxygen
Up to higher level directory
NameDateSize
customdoxygen.css22-Oct-20203K
Doxyfile22-Oct-2020106.4K
footer.html22-Oct-2020809
logo.png22-Oct-20207.2K
mainpage/22-Oct-2020
ProdDoxyfile22-Oct-2020149
README.md22-Oct-2020613

README.md

      1 Doxygen
      2 =======
      3 
      4 To generate all the documentation run the following
      5 from this directory:
      6 
      7     doxygen Doxyfile
      8 
      9 The resulting output goes to
     10 
     11     /tmp/doxygen
     12 
     13 To view those file locally in your browser run:
     14 
     15     cd /tmp/doxygen/html; python -m SimpleHTTPServer 8000
     16 
     17 and visit
     18 
     19     http://localhost:8000
     20 
     21 If you want to have the documentation regenerated on every save then
     22 you can install `entr` and run the following from this directory:
     23 
     24     find  ../../include/ ../../src/ . | entr doxygen ./Doxyfile
     25 
     26 Install
     27 -------
     28 
     29 For a linux desktop you can install the doxygen tool via:
     30 
     31     sudo apt install doxygen
     32