diff options
| author | skal <pascal.massimino@gmail.com> | 2026-01-27 18:56:59 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-01-27 18:58:50 +0100 |
| commit | 2f68b86ba403fdae97c00569b6bb9b58ad1f33a6 (patch) | |
| tree | cd38e2aa13c26fdcfcf3555050a46db63c936efb /scripts/project_init.sh | |
initial commit
Diffstat (limited to 'scripts/project_init.sh')
| -rwxr-xr-x | scripts/project_init.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/project_init.sh b/scripts/project_init.sh new file mode 100755 index 0000000..40f9457 --- /dev/null +++ b/scripts/project_init.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# Fetch minimal third-party dependencies + +set -e + +echo "Initializing demo64k dependencies..." + +mkdir -p third_party + +if [ ! -f third_party/miniaudio.h ]; then + echo "Fetching miniaudio.h..." + curl -L https://raw.githubusercontent.com/mackron/miniaudio/master/miniaudio.h -o third_party/miniaudio.h +else + echo "miniaudio.h already present." +fi + +echo "Done." |
