0027207: New universal method for extracting of results of work of HLRBRep_Algo algorithm
[occt.git] / genproj.sh
1 #!/bin/bash
2
3 # Helper script to run generation of CBP/XCode projects on Linux / OS X.
4 # Running it requires that Tcl should be in the PATH
5
6 anOldPath="$PATH"
7 anOldLd="$LD_LIBRARY_PATH"
8 anOldDyLd="$DYLD_LIBRARY_PATH"
9
10 # go to the script directory
11 aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
12 if [ ! -e "${aScriptPath}/env.sh" ]; then 
13 cat ${aScriptPath}/adm/templates/env.sh | sed -e '/__CASROOT__/d' > ${aScriptPath}/env.sh
14 fi
15
16 aSystem=`uname -s`
17 aTarget="$1"
18 anOpt2=$2
19 anOpt3=$3
20 anOpt4=$4
21 anOpt5=$5
22 if [ "$aTarget" == "" ]; then
23   aTarget="cbp"
24   if [ "$aSystem" == "Darwin" ]; then aTarget="xcd"; fi;
25 fi
26
27 if [ ! -e "${aScriptPath}/custom.sh" ]; then
28   tclsh "${aScriptPath}/adm/genconf.tcl"
29 fi
30
31 if [ ! -e "${aScriptPath}/custom.sh" ]; then
32   echo custom.sh is not created. Run the script again and generate custom.sh
33   exit 1
34 fi
35 source "${aScriptPath}/custom.sh"
36
37 if [ -e "${aScriptPath}/env.sh" ]; then source "${aScriptPath}/env.sh"; fi
38
39 tclsh "${aScriptPath}/adm/start.tcl" genproj -path="${aScriptPath}" -target=${aTarget} $anOpt2 $anOpt3 $anOpt4 $anOpt5
40
41 export PATH="$anOldPath"
42 export LD_LIBRARY_PATH="$anOldLd"
43 export DYLD_LIBRARY_PATH="$anOldDyLd"