mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-10 17:40:24 +08:00
24 lines
657 B
Bash
Executable File
24 lines
657 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -e "${aSamplePath}/custom.sh" ]; then source "${aSamplePath}/custom.sh"; fi
|
|
|
|
if test "${CASROOT}" == ""; then
|
|
echo "Environment variable \"CASROOT\" not defined. Define it in \"custom.sh\" script."
|
|
exit 1
|
|
fi
|
|
|
|
if test "${QTDIR}" == ""; then
|
|
echo "Environment variable \"QTDIR\" not defined. Define it in \"custom.sh\" script."
|
|
exit 1
|
|
fi
|
|
|
|
if test `uname -s` == "Darwin" && test "${WOKHOME}" == ""; then
|
|
echo "Environment variable \"WOKHOME\" not defined. Define it in \"custom.sh\" script."
|
|
exit 1
|
|
fi
|
|
|
|
export PATH=${QTDIR}/bin:${PATH}
|
|
|
|
source $CASROOT/env.sh
|
|
export CSF_OPT_INC="${CASROOT}/inc:${WOKHOME}/lib:${CSF_OPT_INC}"
|