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

22 lines
396 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%\IESample.exe" goto ERR_EXE
echo Starting IESample .....
"%~dp0%BIN_DIR%\IESample.exe"
goto END
:ERR_EXE
echo Executable %~dp0%BIN_DIR%\IESample.exe not found.
echo Probably you didn't compile the application.
pause
goto END
:END