File: README.md

package info (click to toggle)
rkcommon 1.14.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,304 kB
  • sloc: cpp: 33,504; sh: 31; makefile: 13
file content (30 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (2)
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 .
```