moddyz / USDSandbox

Sandbox for experimenting with USD (Universal Scene Description).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

USDSandbox

Sandbox for experimenting with USD (Universal Scene Description).

Table of Contents

Dependencies

The following dependencies are mandatory:

Building

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

About

Sandbox for experimenting with USD (Universal Scene Description).


Languages

Language:CMake 42.4%Language:C++ 30.0%Language:Python 26.1%Language:C 1.6%