mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
PRO file is added + a description of how to generate the Visual Studio projects and compile. In addition, the sample folder is renamed to FuncDemo. Adding 64 bit configuration to VC projects
21 lines
391 B
Batchfile
21 lines
391 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%\FuncDemo.exe" goto ERR_EXE
|
|
|
|
echo Starting Demo .....
|
|
"%~dp0%BIN_DIR%\FuncDemo.exe"
|
|
|
|
goto END
|
|
|
|
:ERR_EXE
|
|
echo Executable %~dp0%BIN_DIR%\FuncDemo.exe not found.
|
|
echo Probably you didn't compile the application.
|
|
pause
|
|
goto END
|
|
|
|
:END |