0024553: Deleting obsolete/unused ".gxx" files from "GCPnts"
[occt.git] / genconf
1 #!/bin/bash
2
3 # Helper script to configure environment for genproj tool.
4 # Running it requires that Tcl should be in the PATH
5
6 # initialize environment
7 aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
8 if [ ! -e "${aScriptPath}/env.sh" ]; then 
9 cat ${aScriptPath}/adm/templates/env.sh | sed -e '/__CASROOT__/d' > ${aScriptPath}/env.sh
10 fi
11
12 # run GUI tool
13 tclsh "${aScriptPath}/adm/genconf.tcl"