0029346: Visualization, TKOpenGl - collect frame statistics
[occt.git] / upgrade.bat
CommitLineData
d1a67b9d 1@echo off
2
3rem Helper script to run procedure of automatic upgrade of application code
4rem on newer version of OCCT on Windows.
5rem Running it requires that Tcl should be in the PATH
6
7SET "OLD_PATH=%PATH%"
8
9if exist "%~dp0env.bat" (
10 call "%~dp0env.bat"
11)
12
13set "TCL_EXEC=tclsh.exe"
14
15for %%X in (%TCL_EXEC%) do (set TCL_FOUND=%%~$PATH:X)
16
17if defined TCL_FOUND (
18 %TCL_EXEC% %~dp0adm/start.tcl upgrade %*
19) else (
20 echo "Error. %TCL_EXEC% is not found. Please update PATH variable"
21)
22
23SET "PATH=%OLD_PATH%"