0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / samples / qt / Tutorial / run.bat
CommitLineData
4b3541c6 1Setlocal EnableDelayedExpansion
2
63fb818e 3call "%~dp0env.bat" %1 %2 %3
cc5ac00d 4
aea58b16 5set "BIN_DIR=win%ARCH%\%VCVER%\bind"
6if ["%CASDEB%"] == [""] (
7 set "BIN_DIR=win%ARCH%\%VCVER%\bin"
cc5ac00d 8)
9
aea58b16 10if not exist "%~dp0%BIN_DIR%\Tutorial.exe" goto ERR_EXE
cc5ac00d 11
12echo Starting Tutorial .....
aea58b16 13"%~dp0%BIN_DIR%\Tutorial.exe"
cc5ac00d 14
15goto END
16
17:ERR_EXE
aea58b16 18echo Executable %~dp0%BIN_DIR%\Tutorial.exe not found.
cc5ac00d 19echo Probably you didn't compile the application.
20pause
21goto END
22
23:END