From afce835276854e9da8b12742edc832b715eb8ae0 Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Fri, 10 Jan 2025 06:50:10 +0800 Subject: [PATCH] Brew linking for glfw, glfw3, and glew. --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index d4f2c07..c2f8d13 100644 --- a/build.py +++ b/build.py @@ -146,7 +146,7 @@ def include_sha_headers(): ]) elif PLATFORM == 'Darwin': subprocess.run(['brew', 'install', 'glfw', 'glfw3', 'glew']) - subprocess.run(['brew', 'link', 'glfw']) + subprocess.run(['brew', 'link', 'glfw', 'glfw3', 'glew']) print('Building binaries...') if PLATFORM == 'Windows':