mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
15 lines
417 B
Bash
15 lines
417 B
Bash
#!/bin/bash
|
|
|
|
export aSamplePath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
if [ -e "${aSamplePath}/env.sh" ]; then source "${aSamplePath}/env.sh" $*; fi
|
|
cd $aSamplePath
|
|
qmake Tutorial.pro
|
|
if [ "$(uname -s)" != "Darwin" ] || [ "$MACOSX_USE_GLX" == "true" ]; then
|
|
aNbJobs="$(getconf _NPROCESSORS_ONLN)"
|
|
if [ "${CASDEB}" == "d" ]; then
|
|
make -j $aNbJobs debug
|
|
else
|
|
make -j $aNbJobs release
|
|
fi
|
|
fi
|