mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-13 00:34:11 +00:00
0899dacbfa
- zlib, vorbis, ogg, opus - build static libraries with 10.9 deployment target (this is the lowest I can use on my 10.15 dev machine) - build x86_64 only (I don't have an arm64 machine to test)
6 lines
212 B
Bash
Executable file
6 lines
212 B
Bash
Executable file
#!/bin/bash
|
|
|
|
git clone --depth 1 https://github.com/microsoft/vcpkg
|
|
./vcpkg/bootstrap-vcpkg.sh
|
|
|
|
./vcpkg/vcpkg install --overlay-triplets=custom-triplets --triplet=x64-osx-10.9 zlib libogg opus opusfile libvorbis
|