mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Install occt folder now can contain several occt configurations - custom.bat/sh was added to include specific (for each occt config) custom.bat/sh files - specific custom.bat/sh is added for each configuration (e.g., custom_vc9_win32_d.bat), generated by cmake and included within custom.bat/sh - draw.bat has three argument, e.g., vc9 win32 debug (as occt behavior) - sample.bat has one or four arguments, e.g., sample_name vc8 win64 release - PATH is not changed. DRAWEXE.exe is called from specific folder patched custom.[bat/sh].[main/in] files have higher priority than origin ones Documentation was updated to describe new features of CMake Seeking process of OpenCL include folder was fixed
32 lines
643 B
Batchfile
32 lines
643 B
Batchfile
@echo off
|
|
|
|
if ["%1"] == [""] (
|
|
echo Launch selected sample as follows:
|
|
echo sample.bat SampleName vc10 win32 d
|
|
echo or to use last sample build configuration:
|
|
echo sample.bat SampleName
|
|
echo available samples:
|
|
echo Geometry
|
|
echo Modeling
|
|
echo Viewer2d
|
|
echo Viewer3d
|
|
echo ImportExport
|
|
echo Ocaf
|
|
echo Triangulation
|
|
echo HLR
|
|
echo Animation
|
|
echo Convert
|
|
exit /B
|
|
)
|
|
|
|
call "%~dp0env.bat" %2 %3 %4
|
|
|
|
if not exist "%~dp0/%BIN_TAIL%/%1.exe" (
|
|
echo Executable %~dp0/%BIN_TAIL%/%1.exe not found.
|
|
echo Probably you didn't compile the application.
|
|
exit /B
|
|
)
|
|
|
|
"%~dp0/%BIN_TAIL%/%1.exe"
|
|
|