mirror of
https://github.com/libretro/glslang.git
synced 2024-12-13 10:46:50 +00:00
35 lines
682 B
Bash
35 lines
682 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
svn update
|
||
|
|
||
|
rm -f StandAlone/glslangValidator
|
||
|
rm -f Test/glslangValidator
|
||
|
rm -f glslang/MachineIndependent/lib/libglslang.so
|
||
|
rm -f Install/Linux/libglslang.so
|
||
|
rm -f Install/Linux/glslangValidator
|
||
|
|
||
|
cd StandAlone
|
||
|
make clean
|
||
|
cd ../glslang/MachineIndependent
|
||
|
make clean
|
||
|
cd ../..
|
||
|
|
||
|
# build the StandAlone app and all it's dependencies
|
||
|
make -C StandAlone
|
||
|
|
||
|
# so we can find the shared library
|
||
|
#LD_LIBRARY_PATH=`pwd`/glslang/MachineIndependent/lib
|
||
|
#export LD_LIBRARY_PATH
|
||
|
|
||
|
# install
|
||
|
cd Install/Linux
|
||
|
./install
|
||
|
|
||
|
# run using test data
|
||
|
cd Test
|
||
|
../StandAlone/glslangValidator -i sample.vert sample.frag
|
||
|
|
||
|
cd ../../Test
|
||
|
chmod +x runtests
|
||
|
./runtests
|