750 B
750 B
Build Documentation Using CMake
- Clone submodules:
cd openvino
git submodule update --init --recursive
- Install build dependencies using the
install_build_dependencies.shscript in the project root folder.
chmod +x install_build_dependencies.sh
./install_build_dependencies.sh
-
Install doxyrest and put the
binfolder in your path -
Install python dependencies:
python -m pip install -r docs/requirements.txt
-
Install the sphinx theme
-
Create a build folder:
mkdir build && cd build
- Build documentation using these commands:
cmake .. -DENABLE_DOCS=ON -DENABLE_DOCKER=ON
cmake --build . --target sphinx_docs