ConfigurationΒΆ
The library can be configured with various CMAKE options in order to generate the desired result.
The configuration options can be passed to cmake via command-line with
cmake -D<OPTION>:<OPTION_TYPE>=<VALUE> ..
or via the cmake curses interface
ccmake ...
The available options and a short description is listed below.
CMAKE Option |
DECSRIPTION |
|---|---|
|
Build test cases. |
|
Build benchmarks. |
|
Build examples. |
|
Enable OpenMP in examples. |
|
Embree fallback for scene API. |
For examples, if you want to build the examples with OpenMP support, run
cmake -DBUILD_EXAMPLES:BOOL=true -DENABLE_OMP:BOOL=true <path/to/srcdir>