You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build-documentation.cmd 454B

1234567891011121314151617
  1. setlocal
  2. setlocal enableextensions
  3. set "OV_PATH_ROOT=%~dp0.."
  4. set "PATH=%OV_PATH_ROOT%/bin;%PATH%"
  5. set "TEMPLATE_DIR=sphinx emplates"
  6. if not exist %TEMPLATE_DIR% (md %TEMPLATE_DIR%)
  7. call openvibe-plugin-inspector --box-doc-directory sphinx/templates
  8. move sphinx\templates\index-boxes.rst sphinx\source\boxes
  9. pushd sphinx
  10. call make.bat html
  11. popd
  12. endlocal
  13. if exist ..\doc (rmdir /s /q ..\doc)
  14. mkdir ..\doc
  15. move sphinx\build\html "..\doc\OpenViBE Manual"