зеркало из https://github.com/stride3d/xkslang.git
11 строки
167 B
Bash
11 строки
167 B
Bash
|
#!/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
|