summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBiswapriyo Nath <nathbappai@gmail.com>2021-02-22 19:08:14 +0530
committerJan Ekström <jeebjp@gmail.com>2021-02-23 01:38:39 +0200
commitb95c7dd6cc7fd2edef523c41a7ea2293f4272e35 (patch)
tree30a229af2b8f664fd9447cb32b99faa49c4325e2
parent5de72613b9cfd0c313a249a332b96eb069dca602 (diff)
downloadmpv-b95c7dd6cc7fd2edef523c41a7ea2293f4272e35.tar.bz2
mpv-b95c7dd6cc7fd2edef523c41a7ea2293f4272e35.tar.xz
appveyor: Use MSYS2's spirv-cross package instead of building it
-rwxr-xr-xTOOLS/appveyor-install.sh10
1 files changed, 1 insertions, 9 deletions
diff --git a/TOOLS/appveyor-install.sh b/TOOLS/appveyor-install.sh
index 835850abf1..95e4f7b4ed 100755
--- a/TOOLS/appveyor-install.sh
+++ b/TOOLS/appveyor-install.sh
@@ -24,6 +24,7 @@ pacman -S --noconfirm --needed \
$MINGW_PACKAGE_PREFIX-ninja \
$MINGW_PACKAGE_PREFIX-rubberband \
$MINGW_PACKAGE_PREFIX-shaderc \
+ $MINGW_PACKAGE_PREFIX-spirv-cross \
$MINGW_PACKAGE_PREFIX-uchardet \
$MINGW_PACKAGE_PREFIX-vulkan
@@ -51,12 +52,3 @@ pacman -Sc --noconfirm
--enable-schannel
make -j4 install
)
-
-# Compile SPIRV-Cross
-(
- git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Cross && cd SPIRV-Cross
-
- mkdir build && cd build
- cmake -GNinja -DSPIRV_CROSS_SHARED=ON -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX ..
- ninja install
-)