Change OCCT version to 7.1.1 and define OCC_VERSION_DEVELOPMENT to "dev"
[occt.git] / genconf
CommitLineData
72c37458 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
7aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
8if [ ! -e "${aScriptPath}/env.sh" ]; then
9cat ${aScriptPath}/adm/templates/env.sh | sed -e '/__CASROOT__/d' > ${aScriptPath}/env.sh
10fi
11
12# run GUI tool
13tclsh "${aScriptPath}/adm/genconf.tcl"