mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
21 lines
395 B
Batchfile
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%\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 |