mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Image_VideoRecorder - added new class for video recording using FFmpeg framework. Draw Harness command vanimation has been extended with new options for video recording. New optional dependency has been introduced - CSF_FFmpeg.
16 lines
533 B
Bash
Executable File
16 lines
533 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Helper script to configure environment for genproj tool.
|
|
# Running it requires that Tcl should be in the PATH
|
|
|
|
# initialize environment
|
|
aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
|
|
if [ ! -e "${aScriptPath}/env.sh" ]; then
|
|
cat ${aScriptPath}/adm/templates/env.sh | sed -e '/__CASROOT__/d' > ${aScriptPath}/env.sh
|
|
fi
|
|
|
|
if [ -e "${aScriptPath}/custom.sh" ]; then source "${aScriptPath}/custom.sh"; fi
|
|
|
|
# run GUI tool
|
|
tclsh "${aScriptPath}/adm/genconf.tcl"
|