Welcome to mirror list, hosted at ThFree Co, Russian Federation.

find_sphinx.cmd « windows « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24238e96768c89ef31fe7aca3fc7b183713867b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
REM First see if there is an environment variable set
if EXIST "%SPHINX_BIN%" (
    goto detect_sphinx_done
)

REM Then see if inkscape is available in the path
for %%X in (sphinx-build.exe) do (set SPHINX_BIN=%%~$PATH:X)
if EXIST "%SPHINX_BIN%" (
    goto detect_sphinx_done
)

echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINX_BIN environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/

REM If still not found clear the variable
set SPHINX_BIN=

:detect_sphinx_done