Skip to content
Snippets Groups Projects
Commit 5d79ac49 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

meson: fix opengl build for mingw

parent e37bc901
No related branches found
No related tags found
1 merge request!3115meson: fix opengl build for mingw
Pipeline #304576 passed with stage
in 18 minutes and 44 seconds
......@@ -33,7 +33,8 @@ if opengl_dep.found()
files('display.c'),
opengl_vout_commonsources
],
'link_with' : [libvlc_opengl]
'link_with' : [libvlc_opengl],
'dependencies' : [gl_common_dep, m_lib]
}
endif
......@@ -45,7 +46,7 @@ endif
# interop_sw
if ['darwin', 'android'].contains(host_system) or opengl_dep.found() or opengles2_dep.found()
interop_sw_deps = []
interop_sw_deps = [gl_common_dep, m_lib]
interop_sw_cargs = []
if have_osx and opengl_dep.found()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment