2012-12-12 21:15:54 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
2013-08-13 00:58:49 +00:00
|
|
|
rm -f StandAlone/glsangValidator
|
|
|
|
rm -f glslang/MachineIndependent/lib/libglslang.so
|
2013-07-08 21:50:31 +00:00
|
|
|
|
2012-12-12 21:15:54 +00:00
|
|
|
# build the StandAlone app and all it's dependencies
|
|
|
|
make -C StandAlone
|
|
|
|
|
|
|
|
# so we can find the shared library
|
2013-08-13 00:58:49 +00:00
|
|
|
LD_LIBRARY_PATH=`pwd`/glslang/MachineIndependent/lib
|
2012-12-12 21:15:54 +00:00
|
|
|
export LD_LIBRARY_PATH
|
|
|
|
|
|
|
|
# run using test data
|
2013-04-13 06:05:31 +00:00
|
|
|
cd Test
|
2013-08-05 16:36:49 +00:00
|
|
|
../StandAlone/glslangValidator -i sample.vert sample.frag
|