29 lines
549 B
Markdown
29 lines
549 B
Markdown
# openVulkano
|
|
openVulkano is a simple Vulkan rendering engine which is capable of recording command buffers from multiple threads.
|
|
|
|
## Building:
|
|
### Requirements:
|
|
* Git
|
|
* CMake
|
|
* C++ 20 compatible compiler
|
|
* Perl
|
|
* Bash
|
|
* glslang
|
|
* bin2c
|
|
### Required dependencies on linux
|
|
```bash
|
|
sudo apt install extra-cmake-modules libarchive-dev libeigen3-dev
|
|
```
|
|
|
|
### Build from source:
|
|
```bash
|
|
git clone https://github.com/GeorgH93/openVulkano.git
|
|
cd openVulkano
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
cmake --build . --config Release
|
|
```
|
|
|
|
|