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

11 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