forked from vfxpro99/usd-build-club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-macos-brew.sh
executable file
·105 lines (81 loc) · 3.11 KB
/
build-macos-brew.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/bin/bash
# optional first argument: Debug
SCRIPT_DIR="$(dirname ${BASH_SOURCE[0]})"
ROOT=$(pwd)
BREW=$ROOT/homebrew/bin/brew
echo "-------------------------------------------------"
echo "1/5 Installing brew"
echo "-------------------------------------------------"
if [ ! -f "${BREW}" ]; then
source ${SCRIPT_DIR}/brew/brew-install.sh
fi
PATH=${PATH}:$ROOT/homebrew/bin
# We use $BREW to get standard stuff we don't want/need to build
#/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Home$BREW/install/master/install)"
mkdir -p ~/Library/Python/2.7/lib/python/site-packages
echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> ~/Library/Python/2.7/lib/python/site-packages/homegpth
$BREW update
$BREW upgrade
echo "-------------------------------------------------"
echo "2/5 Installing USD dependencies"
echo "-------------------------------------------------"
$BREW install cmake
$BREW install python
sudo easy_install -U pip
sudo pip install --upgrade PyOpenGL PyOpenGL-accelerate
sudo pip install --upgrade jinja2
$BREW install cartr/qt4/qt # patched Qt4 for Sierra
$BREW install cartr/qt4/pyside
$BREW install cartr/qt4/pyside-tools
$BREW install boost
$BREW install boost-python
$BREW install tbb
$BREW install double-conversion
$BREW install glew
$BREW install openexr
$BREW install glfw3
$BREW install ptex
$BREW install opencolorio
$BREW install homebrew/science/openimageio
$BREW install $SCRIPT_DIR/brew/opensubdiv.rb
echo "-------------------------------------------------"
echo "3/5 Getting the latest USD dev code"
echo "-------------------------------------------------"
if [ ! -f ../USD/.git/config ]; then
cd ..
git clone https://github.com/PixarAnimationStudios/USD.git
cd $ROOT
fi
cd ../USD
git checkout dev
cd $ROOT
mkdir -p build
cd build
echo "-------------------------------------------------"
echo "4/5 configuring USD"
echo "-------------------------------------------------"
export PYTHONPATH=${ROOT}/homebrew/lib/python2.7/site-packages/
cmake -G "Xcode" ../../USD \
-DOPENSUBDIV_ROOT_DIR=${ROOT}/homebrew \
-DCMAKE_PREFIX_PATH=${ROOT}/homebrew \
-DCMAKE_INSTALL_PATH=${ROOT}/homebrew \
-DPYTHON_EXECUTABLE=${ROOT}/homebrew/bin/python \
-DPYTHON_INCLUDE_DIR=${ROOT}/homebrew/Frameworks/Python.framework/Versions/2.7/include/python2.7 \
-DPYTHON_LIBRARY=${ROOT}/homebrew/Frameworks/Python.framework/Versions/2.7/lib/libpython2.7.dylib \
-DPYTHON_LIBRARIES=${ROOT}/homebrew/Frameworks/Python.framework/Versions/2.7/lib/libpython2.7.dylib
echo "-------------------------------------------------"
echo "5/5 Building and installing USD"
if [[ "$1" = "Debug" ]]; then
echo " Debug build in progress."
cmake --build . --target install --config Debug
else
echo " Release build in progress."
cmake --build . --target install --config Release
fi
echo "-------------------------------------------------"
cd $ROOT
echo "-------------------------------------------------"
echo "USD build complete."
echo "To initialize the environment:"
echo "source setvars-macos-brew.sh "
echo "-------------------------------------------------"