diff --git a/bin/build.sh b/bin/build.sh index 0b81fcf..72d4324 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -1,4 +1,4 @@ #!/bin/bash set -e -cd VkFFT && mkdir build && cd build && CMAKE_BUILD_TYPE=Release cmake .. && make -j $(nproc) && cd ../.. && \ +cd VkFFT && mkdir build && cd build && CMAKE_BUILD_TYPE=Release cmake -DGLSLANG_GIT_TAG=13.0.0 .. && make -j $(nproc) && cd ../.. && \ mkdir build && cd build && cmake ../lib && make -j $(nproc) && cd .. diff --git a/bin/install-deps.sh b/bin/install-deps.sh index 47517b2..11b704a 100755 --- a/bin/install-deps.sh +++ b/bin/install-deps.sh @@ -14,5 +14,4 @@ sudo apt-get update && sudo apt-get install -qy \ && \ wget https://sourceforge.net/projects/sigpack/files/sigpack-1.2.7.zip -O sigpack.zip && unzip sigpack.zip && ln -s sigpack-*/sigpack . && \ wget https://github.com/nlohmann/json/releases/download/v3.11.2/json.hpp && \ - git clone https://github.com/DTolm/VkFFT -b v1.3.1 && \ - sed -i -E 's/GIT_TAG\s+"origin.main"/GIT_TAG "13.0.0"/g' VkFFT/CMakeLists.txt + git clone https://github.com/DTolm/VkFFT -b v1.3.2