blob: 44f655fc4f400dabe40243290942d254baed712d [file] [log] [blame]
John Kessenicha0af4732012-12-12 21:15:54 +00001#! /bin/bash
2
John Kesseniche0ab8db2013-07-08 21:50:31 +00003rm StandAlone/StandAlone
4
John Kessenicha0af4732012-12-12 21:15:54 +00005# build the StandAlone app and all it's dependencies
6make -C StandAlone
7
8# so we can find the shared library
9LD_LIBRARY_PATH=`pwd`/glslang/MachineIndependent/lib:${LD_LIBRARY_PATH}
10export LD_LIBRARY_PATH
11
12# run using test data
John Kessenich4d5de022013-04-13 06:05:31 +000013cd Test
14../StandAlone/StandAlone -i sample.vert sample.frag
15
John Kessenicha0af4732012-12-12 21:15:54 +000016