forked from pupbrained/vulkan-test
7 lines
177 B
Bash
Executable file
7 lines
177 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "$SCRIPT_DIR" || exit
|
|
|
|
glslc -c ./shader.vert -o ./vert.spv
|
|
glslc -c ./shader.frag -o ./frag.spv |