1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2025-02-22 19:54:18 +01:00
rpi-vk-driver/BUILD.md
2020-06-18 17:53:40 +01:00

25 lines
565 B
Markdown

# How to compile on a Raspberry Pi
### Install prerequisites
sudo apt-get install cmake
### Clone RPi VK Driver
git clone https://github.com/Yours3lf/rpi-vk-driver.git
cd rpi-vk-driver
mkdir build
cd build
### Run CMake
cmake .. -DCMAKE_BUILD_TYPE=Release
### Build project
cmake --build . --target all
### Run install.sh
../install.sh
### Install the Vulkan-Loader
Follow the Vulkan-Loader repository instructions to build and install the Vulkan-Loader:
https://github.com/KhronosGroup/Vulkan-Loader/blob/master/BUILD.md