summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS')
-rwxr-xr-xTOOLS/appveyor-build.sh2
-rwxr-xr-xTOOLS/appveyor-install.sh9
2 files changed, 6 insertions, 5 deletions
diff --git a/TOOLS/appveyor-build.sh b/TOOLS/appveyor-build.sh
index 8796118df3..0c3aaacedd 100755
--- a/TOOLS/appveyor-build.sh
+++ b/TOOLS/appveyor-build.sh
@@ -11,7 +11,7 @@ export PYTHON=/usr/bin/python3
"$PYTHON" waf configure \
--check-c-compiler=gcc \
--disable-egl-angle-lib \
- --enable-crossc \
+ --enable-spirv-cross \
--enable-d3d-hwaccel \
--enable-d3d11 \
--enable-egl-angle \
diff --git a/TOOLS/appveyor-install.sh b/TOOLS/appveyor-install.sh
index 28e0674581..15595facf0 100755
--- a/TOOLS/appveyor-install.sh
+++ b/TOOLS/appveyor-install.sh
@@ -62,10 +62,11 @@ pacman -Sc --noconfirm
ninja install
)
-# Compile crossc
+# Compile SPIRV-Cross
(
- git clone --depth=1 https://github.com/rossy/crossc && cd crossc
- git submodule update --init
+ git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Cross && cd SPIRV-Cross
- make -j4 install prefix=$MINGW_PREFIX
+ mkdir build && cd build
+ cmake -GNinja -DSPIRV_CROSS_SHARED=ON -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX ..
+ ninja install
)