0028385: Improve drawing isolines (DBRep_IsoBuilder algorithm)
[occt.git] / genproj
CommitLineData
c7d774c5 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
6anOldPath="$PATH"
7anOldLd="$LD_LIBRARY_PATH"
8anOldDyLd="$DYLD_LIBRARY_PATH"
9
10# go to the script directory
11aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
31dfc19f 12if [ ! -e "${aScriptPath}/env.sh" ]; then
13cat ${aScriptPath}/adm/templates/env.sh | sed -e '/__CASROOT__/d' > ${aScriptPath}/env.sh
14fi
c7d774c5 15
16aSystem=`uname -s`
17aTarget="$1"
18anOpt2=$2
19anOpt3=$3
20anOpt4=$4
21anOpt5=$5
22if [ "$aTarget" == "" ]; then
23 aTarget="cbp"
24 if [ "$aSystem" == "Darwin" ]; then aTarget="xcd"; fi;
25fi
26
27if [ ! -e "${aScriptPath}/custom.sh" ]; then
28 tclsh "${aScriptPath}/adm/genconf.tcl"
29fi
30
31if [ ! -e "${aScriptPath}/custom.sh" ]; then
72c37458 32 echo "Error: custom.sh is not present."
33 echo "Run the script again to generate custom.sh, or create it manually"
c7d774c5 34 exit 1
35fi
36source "${aScriptPath}/custom.sh"
37
38if [ -e "${aScriptPath}/env.sh" ]; then source "${aScriptPath}/env.sh"; fi
39
944d808c 40cd $aScriptPath
41tclsh "./adm/start.tcl" genproj ${aTarget} $anOpt2 $anOpt3 $anOpt4 $anOpt5
c7d774c5 42
43export PATH="$anOldPath"
44export LD_LIBRARY_PATH="$anOldLd"
45export DYLD_LIBRARY_PATH="$anOldDyLd"