From b8330871f17d1f0f3aa02b043f09f68e62c29622 Mon Sep 17 00:00:00 2001 From: odrling Date: Tue, 24 Nov 2020 18:57:51 +0100 Subject: [PATCH] add OpenGL framework --- .github/workflows/macos.yml | 4 ---- meson.build | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 404237c8b..21a04a8ed 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -9,10 +9,6 @@ jobs: with: fetch-depth: 0 - - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: '12.0' - - name: Install dependencies run: | brew install meson ninja libass diff --git a/meson.build b/meson.build index fd558be4d..6db0e3ed6 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']) + frameworks_dep = dependency('appleframeworks', modules : ['CoreText', 'CoreFoundation', 'OpenGL']) deps += frameworks_dep endif