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

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

REM Then see if inkscape is available in the path
for %%X in (inkscape.exe) do (set INKSCAPE_BIN=%%~$PATH:X)
if EXIST "%INKSCAPE_BIN%" (
    goto detect_inkscape_done
)

REM Finally see if it is perhaps installed at the default location
set INKSCAPE_BIN=%ProgramFiles%\Inkscape\bin\inkscape.exe
if EXIST "%INKSCAPE_BIN%" (
    goto detect_inkscape_done
)

REM If still not found clear the variable
set INKSCAPE_BIN=

:detect_inkscape_done