From 96b454743a2eac2ae1d4bdd38d7ca81cc4fd100b Mon Sep 17 00:00:00 2001 From: skal Date: Sun, 22 Mar 2026 12:57:14 +0100 Subject: fix(tools): fetch stb_image_write.h in project_init.sh, fix cnn_test include path --- scripts/project_init.sh | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'scripts/project_init.sh') diff --git a/scripts/project_init.sh b/scripts/project_init.sh index 5a6ac28..4ee1c13 100755 --- a/scripts/project_init.sh +++ b/scripts/project_init.sh @@ -7,6 +7,14 @@ echo "Initializing demo64k dependencies..." mkdir -p third_party +if [ ! -f third_party/stb_image_write.h ]; then + echo "Fetching stb_image_write.h..." + curl -L https://raw.githubusercontent.com/nothings/stb/master/stb_image_write.h \ + -o third_party/stb_image_write.h +else + echo "stb_image_write.h already present." +fi + 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 -- cgit v1.2.3