1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

Merge pull request #8888 from lewisjb:docs-build-doxygen

This commit is contained in:
Alexander Alekhin
2017-06-10 20:12:20 +00:00
2 changed files with 4 additions and 5 deletions
@@ -234,10 +234,9 @@ Thus OpenCV installation is finished. Open a terminal and try import cv2.
To build the documentation, just enter following commands: To build the documentation, just enter following commands:
@code{.sh} @code{.sh}
make docs make doxygen
make html_docs
@endcode @endcode
Then open opencv/build/doc/_html/index.html and bookmark it in the browser. Then open opencv/build/doc/doxygen/html/index.html and bookmark it in the browser.
Additional Resources Additional Resources
-------------------- --------------------
@@ -104,12 +104,12 @@ Building OpenCV from Source Using CMake
make -j7 # runs 7 jobs in parallel make -j7 # runs 7 jobs in parallel
@endcode @endcode
-# [optional] Building documents. Enter \<cmake_build_dir/doc/\> and run make with target -# [optional] Building documents. Enter \<cmake_build_dir/doc/\> and run make with target
"html_docs" "doxygen"
For example For example
@code{.bash} @code{.bash}
cd ~/opencv/build/doc/ cd ~/opencv/build/doc/
make -j7 html_docs make -j7 doxygen
@endcode @endcode
-# To install libraries, execute the following command from build directory -# To install libraries, execute the following command from build directory
@code{.bash} @code{.bash}