0022914: Incorrect name LRELASE is used in *.pro files
[occt.git] / samples / qt / Tutorial / run.bat
CommitLineData
cc5ac00d 1call ../../../env.bat %1 %2 %3
2call %~dp0env.bat
3
4IF not "%CASDEB%" EQU "" (
5SET BIN_DIR=win%ARCH%\%VCVER%\bind
6) ELSE (
7SET BIN_DIR=win%ARCH%\%VCVER%\bin
8)
9
10if not exist "%BIN_DIR%\Tutorial.exe" goto ERR_EXE
11
12echo Starting Tutorial .....
13start /D "%BIN_DIR%" Tutorial.exe
14
15goto END
16
17:ERR_EXE
18echo Executable %BIN_DIR%\Tutorial.exe not found."
19echo Probably you didn't compile the application.
20pause
21goto END
22
23:END