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
- Host: GitHub
- URL: https://github.com/renderkit/rkcommon
- Owner: RenderKit
- License: apache-2.0
- Created: 2020-05-19T16:56:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-26T12:19:25.000Z (over 1 year ago)
- Last Synced: 2025-06-04T12:43:58.938Z (10 months ago)
- Topics: cmake, cpp, cpp11
- Language: C++
- Size: 746 KB
- Stars: 19
- Watchers: 8
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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 .
```