diff options
Diffstat (limited to 'extra/glslang/build')
-rwxr-xr-x | extra/glslang/build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/extra/glslang/build b/extra/glslang/build new file mode 100755 index 00000000..d93fd4e1 --- /dev/null +++ b/extra/glslang/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +export DESTDIR="$1" + +cmake -Bbuild \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DENABLE_OPT=0 \ + -DBUILD_TYPE=Release + +cmake --build build +cmake --install build |