mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Removed redundant scripts from samples/qt/Common and samples/qt/Interface folders Fixed Linux scripts for Tutorial and ImportExport samples
8 lines
197 B
Bash
8 lines
197 B
Bash
#!/bin/sh
|
|
|
|
export aSamplePath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
if [ -e "${aSamplePath}/env.sh" ]; then source "${aSamplePath}/env.sh"; fi
|
|
cd $aSamplePath
|
|
qmake IESample.pro
|
|
make
|