1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

21 lines
395 B
Batchfile

call "%~dp0env.bat" %1 %2 %3
set "BIN_DIR=win%ARCH%\%VCVER%\bind"
if ["%CASDEB%"] == [""] (
set "BIN_DIR=win%ARCH%\%VCVER%\bin"
)
if not exist "%~dp0%BIN_DIR%\Tutorial.exe" goto ERR_EXE
echo Starting Tutorial .....
"%~dp0%BIN_DIR%\Tutorial.exe"
goto END
:ERR_EXE
echo Executable %~dp0%BIN_DIR%\Tutorial.exe not found.
echo Probably you didn't compile the application.
pause
goto END
:END