mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
CMake meta-projects for samples were added launch script for samples was added unrelated changes: CSF_GraphicShr variable were removed occt building with cmake article was updated
29 lines
517 B
Batchfile
29 lines
517 B
Batchfile
@echo off
|
|
|
|
if ["%1"] == [""] (
|
|
echo Launch selected sample as follows:
|
|
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
|
|
)
|
|
|
|
if not exist "%~dp0/bin/%1.exe" (
|
|
echo Executable %~dp0/bin/%4.exe not found.
|
|
echo Probably you didn't compile the application.
|
|
exit /B
|
|
)
|
|
|
|
call "%~dp0/env.bat"
|
|
|
|
"%~dp0/bin/%1.exe"
|