Files
dependencies/setup.sh
2026-02-22 19:06:33 -08:00

9 lines
188 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
if [ "$(uname)" = "Darwin" ]; then
brew install nasm pkg-config
else
sudo apt-get update && sudo apt-get install -y nasm cmake g++ pkg-config
fi