Files
vulkan-tutorial/build
Abdelrahman d57dd446d1 Initial commit for vulkan tutorial
Following along the first 9 chapters of the Vulkan HelloTriangle
tutorial.
2025-12-06 00:20:08 +00:00

7 lines
113 B
Bash
Executable File

#!/bin/bash
CMAKE_BUILD_DIR=cmake-build
cmake -S . -B $CMAKE_BUILD_DIR -G Ninja
cmake --build $CMAKE_BUILD_DIR