mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 05:33:36 +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
ea11d4d8a8
commit
d8f00f79be
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