mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-12 18:29:35 +08:00
Fix for paths in *.vcproj files in MFC sample Fixed scripts for QT samples on Linux platform
8 lines
200 B
Bash
8 lines
200 B
Bash
#!/bin/sh
|
|
|
|
export aSamplePath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
if [ -e "${aSamplePath}/custom.sh" ]; then source "${aSamplePath}/env.sh"; fi
|
|
cd $aSamplePath
|
|
qmake Tutorial.pro
|
|
make
|