add OpenGL framework

This commit is contained in:
odrling 2020-11-24 18:57:51 +01:00
parent e7a4640f23
commit b8330871f1
2 changed files with 1 additions and 5 deletions

View File

@ -9,10 +9,6 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '12.0'
- name: Install dependencies - name: Install dependencies
run: | run: |
brew install meson ninja libass brew install meson ninja libass

View File

@ -264,7 +264,7 @@ if host_machine.system() == 'windows' and not get_option('directsound').disabled
endif endif
if host_machine.system() == 'darwin' if host_machine.system() == 'darwin'
frameworks_dep = dependency('appleframeworks', modules : ['CoreText', 'CoreFoundation']) frameworks_dep = dependency('appleframeworks', modules : ['CoreText', 'CoreFoundation', 'OpenGL'])
deps += frameworks_dep deps += frameworks_dep
endif endif