summaryrefslogtreecommitdiff
path: root/update_external_sources.sh
diff options
context:
space:
mode:
authorCody Northrop <cody@lunarg.com>2015-01-27 11:31:41 -0700
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-02-04 17:58:07 -0700
commit3eaae5771f06a43f3b5165196db499f9244470d4 (patch)
treede59f7a3cd769b4ef2d23b0e504135d75750203d /update_external_sources.sh
parente238deb60d8ea27c39607365d53478f4da857a0a (diff)
cmake: Fix BIL overlay to glslang
Diffstat (limited to 'update_external_sources.sh')
-rwxr-xr-xupdate_external_sources.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/update_external_sources.sh b/update_external_sources.sh
index e007509c..f285763f 100755
--- a/update_external_sources.sh
+++ b/update_external_sources.sh
@@ -2,9 +2,9 @@
# Update source for glslang and LLVM
# Copy necessary BIL pieces into glslang and LLVM
-BIL_REVISION=29512
+BIL_REVISION=29595
LUNARGLASS_REVISION=1060
-GLSLANG_REVISION=29512
+GLSLANG_REVISION=29595
BUILDDIR=$PWD
BASEDIR=$BUILDDIR/..
@@ -55,7 +55,10 @@ function update_BIL () {
echo "Updating $BASEDIR/BIL"
svn update -r "$BIL_REVISION"
# copy of necessary BIL pieces into glslang
- cp $BASEDIR/BIL/glslangOverlay_into_BIL/* $BASEDIR/glslang/BIL
+ cp $BASEDIR/BIL/glslangOverlay_into_BIL/*.h $BASEDIR/glslang/BIL
+ cp $BASEDIR/BIL/glslangOverlay_into_BIL/*.cpp $BASEDIR/glslang/BIL
+ cp $BASEDIR/BIL/glslangOverlay_into_BIL/*.txt $BASEDIR/glslang/BIL
+ cp -r $BASEDIR/BIL/glslangOverlay_into_BIL/glslang/* $BASEDIR/glslang/glslang/
cp $BASEDIR/BIL/Bil.h $BASEDIR/glslang/BIL
cp $BASEDIR/BIL/GLSL450Lib.h $BASEDIR/glslang/BIL
# copy of necessary BIL pieces into LLVM