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
|
# rkcommon - C++/CMake infrastructure
This project represents a common set of C++ infrastructure and CMake utilities
used by various components of IntelĀ® Rendering Toolkit (Render Kit).
### Requirements
- CMake
- C++11 compiler
- TBB 4.4.3 or higher (by default, other tasking system options available via
the `RKCOMMON_TASKING_SYSTEM` CMake variable)
### Building
Build with:
```bash
git clone https://github.com/ospray/rkcommon.git
cd rkcommon
mkdir build
cd build
cmake ..
cmake --build .
```
Run tests from the build directory with:
```bash
ctest .
```
|