mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
d51dc7a194
- add build-macos.sh script - copy Quakespasm-Spiked.txt to build artifacts folder - create Quakespasm-Spiked-Revision.txt file
8 lines
249 B
Bash
Executable file
8 lines
249 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d "vcpkg" ]; then
|
|
git clone --depth 1 https://github.com/microsoft/vcpkg
|
|
./vcpkg/bootstrap-vcpkg.sh
|
|
fi
|
|
|
|
./vcpkg/vcpkg install --overlay-triplets=custom-triplets --triplet=x64-osx-10.9 zlib libogg opus opusfile libvorbis
|