mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00
gl_engine: --deprecated warnings on macOS
macOS has officially deprecated OpenGL. shutdown the warnings to avoid be side-tracked.
This commit is contained in:
parent
619a352cb2
commit
f080976101
1 changed files with 1 additions and 0 deletions
|
@ -25,6 +25,7 @@ source_file = [
|
||||||
|
|
||||||
if host_machine.system() == 'darwin'
|
if host_machine.system() == 'darwin'
|
||||||
gl_dep = declare_dependency(link_args: ['-framework', 'OpenGL'])
|
gl_dep = declare_dependency(link_args: ['-framework', 'OpenGL'])
|
||||||
|
compiler_flags += ['-Wno-deprecated'] #for deprecated opengl
|
||||||
else
|
else
|
||||||
#find a opengl library with fallbacks
|
#find a opengl library with fallbacks
|
||||||
gl_dep = dependency('GL', required: false)
|
gl_dep = dependency('GL', required: false)
|
||||||
|
|
Loading…
Add table
Reference in a new issue