1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
ski 980d161f03 0026739: Problem with generate Qt samples
Generation of project files was fixed.
2015-10-15 10:59:26 +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%\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