mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
14 lines
349 B
Bash
Executable File
14 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export aSamplePath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
if [ -e "${aSamplePath}/env.sh" ]; then source "${aSamplePath}/env.sh"; fi
|
|
cd $aSamplePath
|
|
qmake IESample.pro
|
|
if [ "$(uname -s)" != "Darwin" ] || [ "$MACOSX_USE_GLX" == "true" ]; then
|
|
if [ "${CASDEB}" == "d" ]; then
|
|
make debug
|
|
else
|
|
make release
|
|
fi
|
|
fi
|