vulkan-tutorial/justfile
2023-04-06 15:28:09 -04:00

9 lines
234 B
Makefile

# Lists the available actions
default:
@just --list
# Convert the human-readable shader code to Vulkan bytecode
compile-shaders:
glslc shaders/shader.vert -o shaders/vert.spv
glslc shaders/shader.frag -o shaders/frag.spv