Last active
August 20, 2019 07:45
-
-
Save rsgalloway/6f58b0eab37f01f150d35e9b7477a6ed to your computer and use it in GitHub Desktop.
Alembic OSX Build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# tool chain | |
xcode-select --install | |
# install homebrew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# required libs | |
brew doctor | |
brew install boost --with-python | |
brew install boost-python | |
brew install autoconf | |
brew install automake | |
brew install libtool | |
# IlmBase / PyIlmBase | |
git clone https://github.com/openexr/openexr | |
cd openexr/IlmBase | |
./bootsrap | |
./configure | |
make; make install | |
cd ../PyIlmBase | |
./bootsrap | |
./configure | |
make; make install | |
# Alembic | |
git clone https://github.com/alembic/alembic | |
cd alembic; mkdir build; cd build | |
cmake ../ -DUSE_PYTHON=ON | |
make | |
make install | |
# AbcView | |
git clone https://github.com/alembic/abcview | |
cd abcview; mkdir build; cd build | |
cmake ../ -DUSE_PYTHON=ON | |
make | |
make install |
- suggest to add under
# required libs
:brew install cmake
brew install glew
./bootsrap
should be./bootstrap
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You misspelled "bootstrap" in openexr