Shared Memory Dictionary utilizing Posix IPC semaphores and shared memory segments and offering permanent disk storage of data if required.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

1234567891011121314151617181920212223242526272829303132333435
  1. @ECHO OFF
  2. pushd %~dp0
  3. REM Command file for Sphinx documentation
  4. if "%SPHINXBUILD%" == "" (
  5. set SPHINXBUILD=sphinx-build
  6. )
  7. set SOURCEDIR=source
  8. set BUILDDIR=build
  9. if "%1" == "" goto help
  10. %SPHINXBUILD% >NUL 2>NUL
  11. if errorlevel 9009 (
  12. echo.
  13. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
  14. echo.installed, then set the SPHINXBUILD environment variable to point
  15. echo.to the full path of the 'sphinx-build' executable. Alternatively you
  16. echo.may add the Sphinx directory to PATH.
  17. echo.
  18. echo.If you don't have Sphinx installed, grab it from
  19. echo.http://sphinx-doc.org/
  20. exit /b 1
  21. )
  22. %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
  23. goto end
  24. :help
  25. %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
  26. :end
  27. popd