d57dd446d1
Following along the first 9 chapters of the Vulkan HelloTriangle tutorial.
7 lines
113 B
Python
Executable File
7 lines
113 B
Python
Executable File
#!/bin/bash
|
|
|
|
CMAKE_BUILD_DIR=cmake-build
|
|
|
|
cmake -S . -B $CMAKE_BUILD_DIR -G Ninja
|
|
cmake --build $CMAKE_BUILD_DIR
|