diff options
author | Josh Blum | 2011-10-20 09:41:07 -0700 |
---|---|---|
committer | Josh Blum | 2011-11-16 20:38:30 -0800 |
commit | de849caeb9d689ab0ffd9d8279ba0cb1af925753 (patch) | |
tree | be4b7ab8b47c4ba918c54c97064f7d4929b436a1 /docs/doxygen/README.doxyxml | |
parent | 9a25332b706b1ffadf8cdf9b405e89c37a1e2278 (diff) | |
download | gnuradio-de849caeb9d689ab0ffd9d8279ba0cb1af925753.tar.gz gnuradio-de849caeb9d689ab0ffd9d8279ba0cb1af925753.tar.bz2 gnuradio-de849caeb9d689ab0ffd9d8279ba0cb1af925753.zip |
docs: grabbed support files from ben's repo and my repo
Diffstat (limited to 'docs/doxygen/README.doxyxml')
-rw-r--r-- | docs/doxygen/README.doxyxml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/doxygen/README.doxyxml b/docs/doxygen/README.doxyxml new file mode 100644 index 000000000..fef71e106 --- /dev/null +++ b/docs/doxygen/README.doxyxml @@ -0,0 +1,26 @@ +The process of updating and exporting the Doxygen document strings +into Python consists of a few steps. + +1. Make sure the 'docs' component will be built, which requires +Doxygen. + +2. Build the project like normal, which will run Doxygen and store the + XML files into $(top_builddir). + +3. In $(top_srcdir)/docs/doxygen, run the command: + + $ python swig_doc.py \ + $(top_builddir)/docstrings/docs/doxygen/xml \ + $(top_srcdir)/gnuradio-core/src/lib/swig/swig_doc.i + + This uses the XML output of Doxygen to to rebuild a SWIG file that + contains all of the current Doxygen markups. + +4. Rebuild the GNU Radio libraries. Since gnuradio.i is included in + all of the GNU Radio components, and gnuradio.i includes + swig_doc.i, when the libraries are rebuilt, they will now include + the documentation strings in Python. + +5. Install GNU Radio. Now, when you run help() in Python on a GNU + Radio block, you will get the full documentation. + |