
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@25403 e7fa87d3-cd2b-0410-9028-fcbf551c1848
9 lines
167 B
Bash
9 lines
167 B
Bash
#!/bin/bash
|
|
rm -rf linux_build
|
|
mkdir linux_build
|
|
pushd linux_build
|
|
cmake ..
|
|
make
|
|
./StandAlone/glslangValidator -i ../Test/sample.vert ../Test/sample.frag
|
|
popd
|