glslang-zig/SetupLinux.sh
2014-03-14 17:32:51 +00:00

10 lines
167 B
Bash
Executable file

#!/bin/bash
rm -rf build
mkdir build
pushd build
cmake ..
cmake ..
make -j 2
make install
install/bin/glslangValidator -i ../Test/sample.vert ../Test/sample.frag
popd