From 14cbfbe24a72ddafdc69ec2d2481a419834c6f62 Mon Sep 17 00:00:00 2001 From: odrling Date: Tue, 24 Nov 2020 20:57:27 +0100 Subject: [PATCH] xcode-select install --- .github/workflows/macos.yml | 1 + meson.build | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 21a04a8ed..cb7cc674c 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -12,6 +12,7 @@ jobs: - name: Install dependencies run: | brew install meson ninja libass + xcode-setup --install - name: Build Aegisub run: | diff --git a/meson.build b/meson.build index 6db0e3ed6..11019e8ec 100644 --- a/meson.build +++ b/meson.build @@ -264,7 +264,7 @@ if host_machine.system() == 'windows' and not get_option('directsound').disabled endif if host_machine.system() == 'darwin' - frameworks_dep = dependency('appleframeworks', modules : ['CoreText', 'CoreFoundation', 'OpenGL']) + frameworks_dep = dependency('appleframeworks', modules : ['CoreText', 'CoreFoundation', 'GLUT', 'OpenGL']) deps += frameworks_dep endif