Sandbox for experimenting with USD (Universal Scene Description).
The following dependencies are mandatory:
Example snippet for building this project:
mkdir build
cd build
cmake \
-DUSD_ROOT="/apps/usd/20.11/" \
-DTBB_ROOT="/apps/usd/20.11/" \
-DBOOST_ROOT="/apps/usd/20.11/" \
-DBUILD_TESTING=ON \
-DCMAKE_INSTALL_PREFIX="/apps/USDSandbox/" \
..
cmake --build . -- VERBOSE=1 -j8 all test install
CMake options for configuring this project:
CMake Variable name | Description | Default |
---|---|---|
USD_ROOT |
Root directory of USD installation | |
TBB_ROOT |
Root directory of Intel TBB installation | |
BOOST_ROOT |
Root directory of Boost installation | |
ENABLE_PYTHON_SUPPORT |
Enable python support. Must match python support of USD installation. | ON |
USE_PYTHON_3 |
Build against Python 3 libraries. | OFF |
BUILD_TESTING |
Enable automated testing. | OFF |