An open API service indexing awesome lists of open source software.

https://github.com/renderkit/rkcommon

Intel RenderKit common C++/CMake infrastructure
https://github.com/renderkit/rkcommon

cmake cpp cpp11

Last synced: 9 months ago
JSON representation

Intel RenderKit common C++/CMake infrastructure

Awesome Lists containing this project

README

          

# 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 .
```