From a64edb425360ee4542db1d23bb2169bad4fb6969 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Sat, 19 Oct 2024 14:54:00 -0400 Subject: [PATCH] Workflow: install harfbuzz via brew since there is an issue with linking path of the library on osx --- .github/workflows/macos_build.yaml | 1 + scripts/compile_sokol_shaders.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/macos_build.yaml b/.github/workflows/macos_build.yaml index 6deaf39..e7f5ee5 100644 --- a/.github/workflows/macos_build.yaml +++ b/.github/workflows/macos_build.yaml @@ -32,6 +32,7 @@ jobs: echo "Bash version: $(bash --version)" brew install freetype + brew install harfbuzz brew install odin make -C "/opt/homebrew/Cellar/odin/2024-10/libexec/vendor/stb/src" diff --git a/scripts/compile_sokol_shaders.sh b/scripts/compile_sokol_shaders.sh index 579a68b..9ca5e37 100644 --- a/scripts/compile_sokol_shaders.sh +++ b/scripts/compile_sokol_shaders.sh @@ -58,4 +58,6 @@ pushd "$path_backend_sokol" > /dev/null "$flag_target_lang" "glsl410:glsl300es:metal_macos:wgsl" \ "$flag_format_odin" "$flag_module=draw_text" +echo "Built sokol shaders" + popd > /dev/null