summaryrefslogtreecommitdiffstats
path: root/TOOLS/appveyor-install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/appveyor-install.sh')
-rwxr-xr-xTOOLS/appveyor-install.sh9
1 files changed, 5 insertions, 4 deletions
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
)